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 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
846 // kiosk_mode_screensaver to prevent its extension from getting garbage | 846 // kiosk_mode_screensaver to prevent its extension from getting garbage |
847 // collected. Remove this once KioskModeScreensaver is removed. | 847 // collected. Remove this once KioskModeScreensaver is removed. |
848 // See crbug.com/280363 | 848 // See crbug.com/280363 |
849 bool disable_garbage_collection_; | 849 bool disable_garbage_collection_; |
850 #endif | 850 #endif |
851 | 851 |
852 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 852 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
853 InstallAppsWithUnlimtedStorage); | 853 InstallAppsWithUnlimtedStorage); |
854 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 854 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
855 InstallAppsAndCheckStorageProtection); | 855 InstallAppsAndCheckStorageProtection); |
| 856 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, SetUnsetBlacklistInPrefs); |
| 857 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 858 BlacklistedExtensionWillNotInstall); |
| 859 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 860 UnloadBlacklistedExtensionPolicy); |
| 861 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 862 WillNotLoadBlacklistedExtensionsFromDirectory); |
| 863 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 864 BlacklistedInPrefsFromStartup); |
856 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 865 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
857 }; | 866 }; |
858 | 867 |
859 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 868 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
OLD | NEW |