| Index: chrome/common/chrome_features.cc
|
| diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
|
| index 4181b412a392b441feb1f30bd86c2fc5fb199234..097a5c1061ea2596d20599c01da42ac48fbc142c 100644
|
| --- a/chrome/common/chrome_features.cc
|
| +++ b/chrome/common/chrome_features.cc
|
| @@ -97,7 +97,14 @@ const base::Feature kTabStripKeyboardFocus{"TabStripKeyboardFocus",
|
| base::FEATURE_DISABLED_BY_DEFAULT};
|
| #endif // defined(OS_MACOSX)
|
|
|
| -const base::Feature kTabsInCbd{"TabsInCBD", base::FEATURE_DISABLED_BY_DEFAULT};
|
| +const base::Feature kTabsInCbd {
|
| + "TabsInCBD",
|
| +#if defined(OS_ANDROID)
|
| + base::FEATURE_ENABLED_BY_DEFAULT
|
| +#else
|
| + base::FEATURE_DISABLED_BY_DEFAULT
|
| +#endif
|
| +};
|
|
|
| // Whether to capture page thumbnails when the page load finishes (in addition
|
| // to any other times this might happen).
|
|
|