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 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
855 // kiosk_mode_screensaver to prevent its extension from getting garbage | 856 // kiosk_mode_screensaver to prevent its extension from getting garbage |
856 // collected. Remove this once KioskModeScreensaver is removed. | 857 // collected. Remove this once KioskModeScreensaver is removed. |
857 // See crbug.com/280363 | 858 // See crbug.com/280363 |
858 bool disable_garbage_collection_; | 859 bool disable_garbage_collection_; |
859 #endif | 860 #endif |
860 | 861 |
861 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 862 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
862 InstallAppsWithUnlimtedStorage); | 863 InstallAppsWithUnlimtedStorage); |
863 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 864 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
864 InstallAppsAndCheckStorageProtection); | 865 InstallAppsAndCheckStorageProtection); |
| 866 friend class extensions::DataDeleter; |
865 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 867 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
866 }; | 868 }; |
867 | 869 |
868 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 870 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
OLD | NEW |