OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 } | 63 } |
64 | 64 |
65 namespace extensions { | 65 namespace extensions { |
66 class AppNotificationManager; | 66 class AppNotificationManager; |
67 class AppSyncData; | 67 class AppSyncData; |
68 class BrowserEventRouter; | 68 class BrowserEventRouter; |
69 class ComponentLoader; | 69 class ComponentLoader; |
70 class ContentSettingsStore; | 70 class ContentSettingsStore; |
71 class CrxInstaller; | 71 class CrxInstaller; |
72 class Extension; | 72 class Extension; |
| 73 class ExtensionActionStorageManager; |
73 class ExtensionCookiesEventRouter; | 74 class ExtensionCookiesEventRouter; |
74 class ExtensionManagedModeEventRouter; | 75 class ExtensionManagedModeEventRouter; |
75 class FontSettingsEventRouter; | 76 class FontSettingsEventRouter; |
76 class PushMessagingEventRouter; | 77 class PushMessagingEventRouter; |
77 class ExtensionSyncData; | 78 class ExtensionSyncData; |
78 class ExtensionSystem; | 79 class ExtensionSystem; |
79 class ExtensionUpdater; | 80 class ExtensionUpdater; |
80 class PendingExtensionManager; | 81 class PendingExtensionManager; |
81 class SettingsFrontend; | 82 class SettingsFrontend; |
82 class WebNavigationEventRouter; | 83 class WebNavigationEventRouter; |
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
849 | 850 |
850 // Contains an entry for each warning that shall be currently shown. | 851 // Contains an entry for each warning that shall be currently shown. |
851 ExtensionWarningSet extension_warnings_; | 852 ExtensionWarningSet extension_warnings_; |
852 | 853 |
853 extensions::ProcessMap process_map_; | 854 extensions::ProcessMap process_map_; |
854 | 855 |
855 AppShortcutManager app_shortcut_manager_; | 856 AppShortcutManager app_shortcut_manager_; |
856 | 857 |
857 scoped_ptr<ExtensionErrorUI> extension_error_ui_; | 858 scoped_ptr<ExtensionErrorUI> extension_error_ui_; |
858 | 859 |
| 860 scoped_ptr<extensions::ExtensionActionStorageManager> |
| 861 extension_action_storage_manager_; |
| 862 |
859 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 863 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
860 InstallAppsWithUnlimtedStorage); | 864 InstallAppsWithUnlimtedStorage); |
861 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 865 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
862 InstallAppsAndCheckStorageProtection); | 866 InstallAppsAndCheckStorageProtection); |
863 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 867 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
864 }; | 868 }; |
865 | 869 |
866 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 870 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
OLD | NEW |