Index: chrome/browser/profiles/profile_io_data.cc |
diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc |
index eab2ac60bee7bfdaa4147d0d511b01ee0d3a768b..467fa22eeb423927a62b81b545701f868f3bd3ef 100644 |
--- a/chrome/browser/profiles/profile_io_data.cc |
+++ b/chrome/browser/profiles/profile_io_data.cc |
@@ -132,7 +132,7 @@ bool IsSupportedDevToolsURL(const GURL& url, base::FilePath* path) { |
std::string bundled_path_prefix(chrome::kChromeUIDevToolsBundledPath); |
bundled_path_prefix = "/" + bundled_path_prefix + "/"; |
- if (!url.SchemeIs(chrome::kChromeDevToolsScheme) || |
+ if (!url.SchemeIs(content::kChromeDevToolsScheme) || |
url.host() != chrome::kChromeUIDevToolsHost || |
!StartsWithASCII(url.path(), bundled_path_prefix, false)) { |
return false; |
@@ -607,7 +607,7 @@ bool ProfileIOData::IsHandledProtocol(const std::string& scheme) { |
DCHECK_EQ(scheme, StringToLowerASCII(scheme)); |
static const char* const kProtocolList[] = { |
content::kFileScheme, |
- chrome::kChromeDevToolsScheme, |
+ content::kChromeDevToolsScheme, |
chrome::kDomDistillerScheme, |
extensions::kExtensionScheme, |
extensions::kExtensionResourceScheme, |