| Index: chrome/browser/extensions/api/web_request/web_request_api.cc
|
| diff --git a/chrome/browser/extensions/api/web_request/web_request_api.cc b/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| index e104f92590533804ab6a5b10e6f0526ceeb03810..126a7192a737ac2f5d14a7ffcc2ef7af5473dcba 100644
|
| --- a/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| +++ b/chrome/browser/extensions/api/web_request/web_request_api.cc
|
| @@ -2361,9 +2361,9 @@ void SendExtensionWebRequestStatusToHost(content::RenderProcessHost* host) {
|
| bool adblock = false;
|
| bool adblock_plus = false;
|
| bool other = false;
|
| - const ExtensionSet* extensions =
|
| + const extensions::ExtensionSet* extensions =
|
| profile->GetExtensionService()->extensions();
|
| - for (ExtensionSet::const_iterator it = extensions->begin();
|
| + for (extensions::ExtensionSet::const_iterator it = extensions->begin();
|
| it != extensions->end(); ++it) {
|
| if (profile->GetExtensionService()->HasUsedWebRequest(it->get())) {
|
| if ((*it)->name().find("Adblock Plus") != std::string::npos) {
|
|
|