| Index: components/offline_pages/offline_page_feature.cc
|
| diff --git a/components/offline_pages/offline_page_feature.cc b/components/offline_pages/offline_page_feature.cc
|
| index beee145d8398d9618a126bcad5070aa3bbb0039c..ed390b8815e0abe9990d76c5fa0f1bfefbb11ebb 100644
|
| --- a/components/offline_pages/offline_page_feature.cc
|
| +++ b/components/offline_pages/offline_page_feature.cc
|
| @@ -11,6 +11,7 @@
|
| #include "base/strings/string_util.h"
|
| #include "build/build_config.h"
|
| #include "components/offline_pages/offline_page_switches.h"
|
| +#include "components/version_info/version_info.h"
|
|
|
| #if defined(OS_ANDROID)
|
|
|
| @@ -62,7 +63,10 @@ FeatureMode GetOfflinePageFeatureMode() {
|
| base::CompareCase::SENSITIVE)) {
|
| return FeatureMode::ENABLED_AS_SAVED_PAGES;
|
| }
|
| - return FeatureMode::DISABLED;
|
| +
|
| + // Enabled by default on trunk.
|
| + return version_info::IsOfficialBuild() ? FeatureMode::DISABLED
|
| + : FeatureMode::ENABLED_AS_BOOKMARKS;
|
| }
|
|
|
| bool IsOfflinePagesEnabled() {
|
|
|