LeOSium_old/patches/0001-Vanadium/0052-always-use-local-new-t...

23 lines
687 B
Diff
Raw Normal View History

2023-11-18 11:23:04 +01:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Daniel Micay <danielmicay@gmail.com>
Date: Mon, 17 Jun 2019 13:14:22 -0400
Subject: [PATCH] always use local new tab page
---
chrome/browser/search/search.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/browser/search/search.cc b/chrome/browser/search/search.cc
index d367a6dee4e18..6d8049076890d 100644
--- a/chrome/browser/search/search.cc
+++ b/chrome/browser/search/search.cc
@@ -161,7 +161,7 @@ bool ShouldShowLocalNewTab(Profile* profile) {
#if !BUILDFLAG(IS_ANDROID)
return DefaultSearchProviderIsGoogle(profile);
#else
- return false;
+ return true;
#endif
}