Chromium Code Reviews| 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 18a61b180ee2870a0afb77e99f66e71046f03509..2acf2e7ffc9a3bf87f14a0657704c7f0d49880e2 100644 |
| --- a/chrome/browser/android/ntp/new_tab_page_url_handler.cc |
| +++ b/chrome/browser/android/ntp/new_tab_page_url_handler.cc |
| @@ -35,9 +35,7 @@ bool HandleAndroidNativePageURL(GURL* url, |
| // TODO(twellington): stop redirecting chrome://history to |
| // 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)) { |
|
Ted C
2017/04/28 18:00:10
@twellington - I "think" we need to keep kChromeUI
Theresa
2017/04/28 18:06:43
That makes sense. If a user has a chrome://history
Dan Beam
2017/04/29 02:39:43
Done.
|
| + if (url->host() == kChromeUIHistoryHost) { |
| *url = GURL(kChromeUINativeHistoryURL); |
| return true; |
| } |