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

Unified Diff: chrome/browser/extensions/standard_management_policy_provider.h

Issue 11415216: Make Blacklist::IsBlacklist asynchronous (it will need to be for safe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another test Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/standard_management_policy_provider.h
diff --git a/chrome/browser/extensions/standard_management_policy_provider.h b/chrome/browser/extensions/standard_management_policy_provider.h
index 8c849dad1e4f422499c1356ab7fb0e42fbe3edde..4dd2a6845d6fc05f307ed79337d75c0af2fb8dc3 100644
--- a/chrome/browser/extensions/standard_management_policy_provider.h
+++ b/chrome/browser/extensions/standard_management_policy_provider.h
@@ -17,9 +17,8 @@ class ExtensionPrefs;
// extension black/whitelists and admin black/whitelists.
class StandardManagementPolicyProvider : public ManagementPolicy::Provider {
public:
- // |prefs| and |blacklist| must outlive this.
- StandardManagementPolicyProvider(ExtensionPrefs* prefs,
- Blacklist* blacklist);
+ // |prefs| must outlive this.
+ explicit StandardManagementPolicyProvider(ExtensionPrefs* prefs);
virtual ~StandardManagementPolicyProvider();
@@ -34,8 +33,6 @@ class StandardManagementPolicyProvider : public ManagementPolicy::Provider {
private:
ExtensionPrefs* const prefs_;
-
- Blacklist* const blacklist_;
};
} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/extension_system.cc ('k') | chrome/browser/extensions/standard_management_policy_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698