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

Unified Diff: chrome/browser/history/history_service.cc

Issue 325443002: Move about://-related constants from //content to //url (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
Index: chrome/browser/history/history_service.cc
diff --git a/chrome/browser/history/history_service.cc b/chrome/browser/history/history_service.cc
index 81043923e3bae018f35d1ab0ae11791b92fbe2eb..e4c0479b2a5fbc54c2527ab4832696d444b9db90 100644
--- a/chrome/browser/history/history_service.cc
+++ b/chrome/browser/history/history_service.cc
@@ -993,7 +993,7 @@ bool HistoryService::CanAddURL(const GURL& url) {
// Allow all about: and chrome: URLs except about:blank, since the user may
// like to see "chrome://memory/", etc. in their history and autocomplete.
- if (url == GURL(content::kAboutBlankURL))
+ if (url == GURL(url::kAboutBlankURL))
return false;
return true;

Powered by Google App Engine
This is Rietveld 408576698