| 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 <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 723 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 723 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 724 DestroyingProfileClearsExtensions); | 724 DestroyingProfileClearsExtensions); |
| 725 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, SetUnsetBlacklistInPrefs); | 725 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, SetUnsetBlacklistInPrefs); |
| 726 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 726 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 727 BlacklistedExtensionWillNotInstall); | 727 BlacklistedExtensionWillNotInstall); |
| 728 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 728 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 729 UnloadBlacklistedExtensionPolicy); | 729 UnloadBlacklistedExtensionPolicy); |
| 730 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 730 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 731 WillNotLoadBlacklistedExtensionsFromDirectory); | 731 WillNotLoadBlacklistedExtensionsFromDirectory); |
| 732 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, ReloadBlacklistedExtension); | 732 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, ReloadBlacklistedExtension); |
| 733 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 734 RemoveExtensionFromBlacklist); |
| 733 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, BlacklistedInPrefsFromStartup); | 735 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, BlacklistedInPrefsFromStartup); |
| 734 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 736 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 735 GreylistedExtensionDisabled); | 737 GreylistedExtensionDisabled); |
| 736 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 738 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 737 GreylistDontEnableManuallyDisabled); | 739 GreylistDontEnableManuallyDisabled); |
| 738 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 740 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 739 GreylistUnknownDontChange); | 741 GreylistUnknownDontChange); |
| 740 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 742 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 741 ManagementPolicyProhibitsEnableOnInstalled); | 743 ManagementPolicyProhibitsEnableOnInstalled); |
| 742 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, | 744 FRIEND_TEST_ALL_PREFIXES(ExtensionServiceTest, |
| 743 BlockAndUnblockBlacklistedExtension); | 745 BlockAndUnblockBlacklistedExtension); |
| 744 | 746 |
| 745 DISALLOW_COPY_AND_ASSIGN(ExtensionService); | 747 DISALLOW_COPY_AND_ASSIGN(ExtensionService); |
| 746 }; | 748 }; |
| 747 | 749 |
| 748 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ | 750 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_H_ |
| OLD | NEW |