| Index: chrome/common/chrome_features.cc
|
| diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
|
| index 61a830dc17eb87da17bfd70b420642b3c3aa9e3f..d6efa4161d1cf9271d99d0412898486a9b78c802 100644
|
| --- a/chrome/common/chrome_features.cc
|
| +++ b/chrome/common/chrome_features.cc
|
| @@ -85,7 +85,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).
|
|
|