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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 namespace base { | 47 namespace base { |
48 class SequencedTaskRunner; | 48 class SequencedTaskRunner; |
49 class Version; | 49 class Version; |
50 } | 50 } |
51 | 51 |
52 namespace extensions { | 52 namespace extensions { |
53 class BrowserEventRouter; | 53 class BrowserEventRouter; |
54 class ComponentLoader; | 54 class ComponentLoader; |
55 class ContentSettingsStore; | 55 class ContentSettingsStore; |
56 class CrxInstaller; | 56 class CrxInstaller; |
| 57 class DataDeleter; |
57 class ExtensionActionStorageManager; | 58 class ExtensionActionStorageManager; |
58 class ExtensionRegistry; | 59 class ExtensionRegistry; |
59 class ExtensionSystem; | 60 class ExtensionSystem; |
60 class ExtensionUpdater; | 61 class ExtensionUpdater; |
61 class PendingExtensionManager; | 62 class PendingExtensionManager; |
62 class SettingsFrontend; | 63 class SettingsFrontend; |
63 class UpdateObserver; | 64 class UpdateObserver; |
64 } // namespace extensions | 65 } // namespace extensions |
65 | 66 |
66 namespace syncer { | 67 namespace syncer { |
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
847 // kiosk_mode_screensaver to prevent its extension from getting garbage | 848 // kiosk_mode_screensaver to prevent its extension from getting garbage |
848 // collected. Remove this once KioskModeScreensaver is removed. | 849 // collected. Remove this once KioskModeScreensaver is removed. |
849 // See crbug.com/280363 | 850 // See crbug.com/280363 |
850 bool disable_garbage_collection_; | 851 bool disable_garbage_collection_; |
851 #endif | 852 #endif |
852 | 853 |
853 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 854 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
854 InstallAppsWithUnlimtedStorage); | 855 InstallAppsWithUnlimtedStorage); |
855 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 856 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
856 InstallAppsAndCheckStorageProtection); | 857 InstallAppsAndCheckStorageProtection); |
| 858 friend class extensions::DataDeleter; |
857 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 859 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
858 }; | 860 }; |
859 | 861 |
860 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 862 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
OLD | NEW |