| Index: chrome/browser/renderer_host/site_instance.cc
|
| diff --git a/chrome/browser/renderer_host/site_instance.cc b/chrome/browser/renderer_host/site_instance.cc
|
| index c6a660dc9eb1d3289e8414245f80f5970a74a19a..31f20f523448d0e23604dcba3447f4677c81cd43 100644
|
| --- a/chrome/browser/renderer_host/site_instance.cc
|
| +++ b/chrome/browser/renderer_host/site_instance.cc
|
| @@ -6,7 +6,7 @@
|
|
|
| #include "chrome/browser/browsing_instance.h"
|
| #include "chrome/browser/dom_ui/dom_ui_factory.h"
|
| -#include "chrome/browser/extensions/extensions_service.h"
|
| +#include "chrome/browser/extensions/extension_service.h"
|
| #include "chrome/browser/renderer_host/browser_render_process_host.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "chrome/common/notification_service.h"
|
| @@ -187,11 +187,11 @@ bool SiteInstance::IsSameWebSite(Profile* profile,
|
|
|
| /*static*/
|
| GURL SiteInstance::GetEffectiveURL(Profile* profile, const GURL& url) {
|
| - if (!profile || !profile->GetExtensionsService())
|
| + if (!profile || !profile->GetExtensionService())
|
| return url;
|
|
|
| const Extension* extension =
|
| - profile->GetExtensionsService()->GetExtensionByWebExtent(url);
|
| + profile->GetExtensionService()->GetExtensionByWebExtent(url);
|
| if (extension) {
|
| // If the URL is part of an extension's web extent, convert it to an
|
| // extension URL.
|
|
|