Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(548)

Unified Diff: content/public/common/url_utils.cc

Issue 168953002: Cleanup: Move kChromeDevToolsScheme constant into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/common/url_constants.cc ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/url_utils.cc
diff --git a/content/public/common/url_utils.cc b/content/public/common/url_utils.cc
index bf37455694539f48cc85d99ced31ef8445a5e9d0..d2fb13bd0f72120ec06c93db2731c7c51deb8821 100644
--- a/content/public/common/url_utils.cc
+++ b/content/public/common/url_utils.cc
@@ -24,7 +24,7 @@ const char* const* GetSavableSchemes() {
bool HasWebUIScheme(const GURL& url) {
return
#if !defined(OS_IOS)
- url.SchemeIs(chrome::kChromeDevToolsScheme) ||
+ url.SchemeIs(kChromeDevToolsScheme) ||
#endif
url.SchemeIs(kChromeUIScheme);
}
« no previous file with comments | « content/public/common/url_constants.cc ('k') | content/shell/browser/shell_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698