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

Unified Diff: chrome/browser/android/ntp/new_tab_page_url_handler.cc

Issue 2751653004: MD History: re-use history host constant from content/ instead of duplicating to chrome/ (Closed)
Patch Set: merge Created 3 years, 9 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 | « no previous file | chrome/browser/browser_about_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/ntp/new_tab_page_url_handler.cc
diff --git a/chrome/browser/android/ntp/new_tab_page_url_handler.cc b/chrome/browser/android/ntp/new_tab_page_url_handler.cc
index 38dc11cb5e41825e861359a3eff38eff69d93ff9..e4396d207854049489e5ebdbcaef0447b57a3118 100644
--- a/chrome/browser/android/ntp/new_tab_page_url_handler.cc
+++ b/chrome/browser/android/ntp/new_tab_page_url_handler.cc
@@ -36,8 +36,8 @@ bool HandleAndroidNativePageURL(GURL* url,
// chrome-native://history when M57 is a distant memory.
// See http://crbug.com/654071.
if (base::FeatureList::IsEnabled(features::kNativeAndroidHistoryManager) &&
- (url->host() == kChromeUIHistoryHost ||
- url->host() == kChromeUIHistoryFrameHost)) {
+ (url->host() == content::kChromeUIHistoryHost ||
+ url->host() == kChromeUIHistoryFrameHost)) {
*url = GURL(content::kChromeUINativeHistoryURL);
return true;
}
« no previous file with comments | « no previous file | chrome/browser/browser_about_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698