* Updated patches for v79 Remaining issue: * blank tabs when running on x86 emulators Waiting on upstream to fix that. The other upstream storage bug (https://bugs.chromium.org/p/chromium/issues/detail?id=1033655) is fixed in this version.
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Tue, 8 Jan 2019 08:54:50 +0100
|
|
Subject: Disable previews by default
|
|
|
|
---
|
|
components/previews/core/previews_features.cc | 7 +------
|
|
1 file changed, 1 insertion(+), 6 deletions(-)
|
|
|
|
diff --git a/components/previews/core/previews_features.cc b/components/previews/core/previews_features.cc
|
|
--- a/components/previews/core/previews_features.cc
|
|
+++ b/components/previews/core/previews_features.cc
|
|
@@ -14,12 +14,7 @@ namespace features {
|
|
// are enabled are controlled by other features.
|
|
const base::Feature kPreviews {
|
|
"Previews",
|
|
-#if defined(OS_ANDROID) || defined(OS_LINUX)
|
|
- // Previews allowed for Android (but also allow on Linux for dev/debug).
|
|
- base::FEATURE_ENABLED_BY_DEFAULT
|
|
-#else // !defined(OS_ANDROID) || defined(OS_LINUX)
|
|
- base::FEATURE_DISABLED_BY_DEFAULT
|
|
-#endif // defined(OS_ANDROID) || defined(OS_LINUX)
|
|
+ base::FEATURE_DISABLED_BY_DEFAULT
|
|
};
|
|
|
|
// Enables the Offline previews on android slow connections.
|
|
--
|
|
2.17.1
|
|
|