Index: chrome/browser/extensions/extension_webrequest_api.cc |
diff --git a/chrome/browser/extensions/extension_webrequest_api.cc b/chrome/browser/extensions/extension_webrequest_api.cc |
index 21fdce999a3972471a2c01db13682e295a4a6f28..481c0152450acd92665141281678e0cd0f137c14 100644 |
--- a/chrome/browser/extensions/extension_webrequest_api.cc |
+++ b/chrome/browser/extensions/extension_webrequest_api.cc |
@@ -1697,9 +1697,9 @@ void SendExtensionWebRequestStatusToHost(content::RenderProcessHost* host) { |
bool adblock = false; |
bool adblock_plus = false; |
bool other = false; |
- const ExtensionList* extensions = |
+ const ExtensionSet* extensions = |
profile->GetExtensionService()->extensions(); |
- for (ExtensionList::const_iterator it = extensions->begin(); |
+ for (ExtensionSet::const_iterator it = extensions->begin(); |
it != extensions->end(); ++it) { |
if (profile->GetExtensionService()->HasUsedWebRequest(*it)) { |
if ((*it)->name().find("Adblock Plus") != std::string::npos) { |