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

Unified Diff: chrome/browser/ui/omnibox/omnibox_edit_model.cc

Issue 325443002: Move about://-related constants from //content to //url (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Android ifx 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/ui/omnibox/omnibox_edit_model.cc
diff --git a/chrome/browser/ui/omnibox/omnibox_edit_model.cc b/chrome/browser/ui/omnibox/omnibox_edit_model.cc
index 2c52de10686cac08323d66903f3b229b93271be8..60bb805edf94296d762b2a98e8ed500ea1506854 100644
--- a/chrome/browser/ui/omnibox/omnibox_edit_model.cc
+++ b/chrome/browser/ui/omnibox/omnibox_edit_model.cc
@@ -1439,7 +1439,7 @@ AutocompleteInput::PageClassification OmniboxEditModel::ClassifyPage() const {
const std::string& url = gurl.spec();
if (url == chrome::kChromeUINewTabURL)
return AutocompleteInput::NTP;
- if (url == content::kAboutBlankURL)
+ if (url == url::kAboutBlankURL)
return AutocompleteInput::BLANK;
if (url == profile()->GetPrefs()->GetString(prefs::kHomePage))
return AutocompleteInput::HOME_PAGE;

Powered by Google App Engine
This is Rietveld 408576698