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..85b3edc275c72b5d77839bd787b40b07c79569e8 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,8 @@ 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)) { |
+ if (url->host() == kChromeUIHistoryHost || |
+ url->host() == kDeprecatedChromeUIHistoryFrameHost) { |
*url = GURL(kChromeUINativeHistoryURL); |
return true; |
} |