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

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

Issue 2547523003: Move Physical Web diagnostics page to new home (Closed)
Patch Set: Rebase Created 4 years 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/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 6b1d8240d794e740e0b697767ae3e6a1c1a6261a..3463c41db5fae655f68203321d612be294e1f85c 100644
--- a/chrome/browser/android/ntp/new_tab_page_url_handler.cc
+++ b/chrome/browser/android/ntp/new_tab_page_url_handler.cc
@@ -30,8 +30,8 @@ bool HandleAndroidNativePageURL(GURL* url,
return true;
}
- if (url->host() == kChromeUIPhysicalWebHost) {
- *url = GURL(kChromeUINativePhysicalWebURL);
+ if (url->host() == kChromeUIPhysicalWebDiagnosticsHost) {
+ *url = GURL(kChromeUINativePhysicalWebDiagnosticsURL);
return true;
}
}

Powered by Google App Engine
This is Rietveld 408576698