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 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
861 // kiosk_mode_screensaver to prevent its extension from getting garbage | 861 // kiosk_mode_screensaver to prevent its extension from getting garbage |
862 // collected. Remove this once KioskModeScreensaver is removed. | 862 // collected. Remove this once KioskModeScreensaver is removed. |
863 // See crbug.com/280363 | 863 // See crbug.com/280363 |
864 bool disable_garbage_collection_; | 864 bool disable_garbage_collection_; |
865 #endif | 865 #endif |
866 | 866 |
867 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 867 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
868 InstallAppsWithUnlimtedStorage); | 868 InstallAppsWithUnlimtedStorage); |
869 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 869 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
870 InstallAppsAndCheckStorageProtection); | 870 InstallAppsAndCheckStorageProtection); |
| 871 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, SetUnsetBlacklistInPrefs); |
| 872 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 873 BlacklistedExtensionWillNotInstall); |
| 874 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 875 UnloadBlacklistedExtensionPolicy); |
| 876 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 877 WillNotLoadBlacklistedExtensionsFromDirectory); |
| 878 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 879 BlacklistedInPrefsFromStartup); |
871 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 880 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
872 }; | 881 }; |
873 | 882 |
874 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 883 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
OLD | NEW |