Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(286)

Side by Side Diff: chrome/browser/extensions/extension_service.h

Issue 119963004: Manage all the testing classes for Blacklist in TestBlacklist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698