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

Unified Diff: chrome/browser/extensions/extension_install_checker.cc

Issue 698553002: Split Blacklist from ExtensionSystem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 6 years, 1 month 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/extension_install_checker.cc
diff --git a/chrome/browser/extensions/extension_install_checker.cc b/chrome/browser/extensions/extension_install_checker.cc
index bd02b7100ade59c1cdeb7ee0622f426953d575e9..0901a0074cd55ded205639f8033f6e7f12117ac6 100644
--- a/chrome/browser/extensions/extension_install_checker.cc
+++ b/chrome/browser/extensions/extension_install_checker.cc
@@ -114,8 +114,7 @@ void ExtensionInstallChecker::OnRequirementsCheckDone(
void ExtensionInstallChecker::CheckBlacklistState() {
DCHECK(extension_.get());
- extensions::Blacklist* blacklist =
- ExtensionSystem::Get(profile_)->blacklist();
+ extensions::Blacklist* blacklist = Blacklist::Get(profile_);
blacklist->IsBlacklisted(
extension_->id(),
base::Bind(&ExtensionInstallChecker::OnBlacklistStateCheckDone,
« no previous file with comments | « chrome/browser/extensions/blacklist_factory.cc ('k') | chrome/browser/extensions/extension_system_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698