Index: chrome/browser/extensions/extension_view_host_factory.cc |
diff --git a/chrome/browser/extensions/extension_view_host_factory.cc b/chrome/browser/extensions/extension_view_host_factory.cc |
index 417495da7050537b1f345108766cf8ddcf30960c..2b926446a645e05d0152d28775242c94310e3f1e 100644 |
--- a/chrome/browser/extensions/extension_view_host_factory.cc |
+++ b/chrome/browser/extensions/extension_view_host_factory.cc |
@@ -83,7 +83,7 @@ const Extension* GetExtensionForUrl(Profile* profile, const GURL& url) { |
if (!service) |
return NULL; |
std::string extension_id = url.host(); |
- if (url.SchemeIs(chrome::kChromeUIScheme) && |
+ if (url.SchemeIs(content::kChromeUIScheme) && |
url.host() == chrome::kChromeUIExtensionInfoHost) |
extension_id = url.path().substr(1); |
return service->extensions()->GetByID(extension_id); |