Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: chrome/browser/about_flags.cc

Issue 2394273002: [Android] Permanently disable "All bookmarks" and remove its experiment (Closed)
Patch Set: isherman's comment Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after
1287 IDS_FLAGS_GOOGLE_PROFILE_INFO_DESCRIPTION, kOsMac | kOsWin | kOsLinux, 1287 IDS_FLAGS_GOOGLE_PROFILE_INFO_DESCRIPTION, kOsMac | kOsWin | kOsLinux,
1288 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)}, 1288 SINGLE_VALUE_TYPE(switches::kGoogleProfileInfo)},
1289 #if defined(ENABLE_APP_LIST) 1289 #if defined(ENABLE_APP_LIST)
1290 {"reset-app-list-install-state", 1290 {"reset-app-list-install-state",
1291 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME, 1291 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_NAME,
1292 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION, 1292 IDS_FLAGS_RESET_APP_LIST_INSTALL_STATE_DESCRIPTION,
1293 kOsMac | kOsWin | kOsLinux, 1293 kOsMac | kOsWin | kOsLinux,
1294 SINGLE_VALUE_TYPE(app_list::switches::kResetAppListInstallState)}, 1294 SINGLE_VALUE_TYPE(app_list::switches::kResetAppListInstallState)},
1295 #endif // ENABLE_APP_LIST 1295 #endif // ENABLE_APP_LIST
1296 #if defined(OS_ANDROID) 1296 #if defined(OS_ANDROID)
1297 {"enable-all-bookmarks-view", IDS_FLAGS_ENABLE_ALL_BOOKMARKS_VIEW_NAME,
1298 IDS_FLAGS_SHOW_ALL_BOOKMARKS_VIEW_DESCRIPTION, kOsAndroid,
1299 FEATURE_VALUE_TYPE(chrome::android::kAllBookmarksFeature)},
1300 {"enable-downloads-ui", IDS_FLAGS_ENABLE_DOWNLOADS_UI_NAME, 1297 {"enable-downloads-ui", IDS_FLAGS_ENABLE_DOWNLOADS_UI_NAME,
1301 IDS_FLAGS_ENABLE_DOWNLOADS_UI_DESCRIPTION, kOsAndroid, 1298 IDS_FLAGS_ENABLE_DOWNLOADS_UI_DESCRIPTION, kOsAndroid,
1302 FEATURE_VALUE_TYPE(chrome::android::kDownloadsUiFeature)}, 1299 FEATURE_VALUE_TYPE(chrome::android::kDownloadsUiFeature)},
1303 {"enable-special-locale", IDS_FLAGS_ENABLE_SPECIAL_LOCALE_NAME, 1300 {"enable-special-locale", IDS_FLAGS_ENABLE_SPECIAL_LOCALE_NAME,
1304 IDS_FLAGS_ENABLE_SPECIAL_LOCALE_DESCRIPTION, kOsAndroid, 1301 IDS_FLAGS_ENABLE_SPECIAL_LOCALE_DESCRIPTION, kOsAndroid,
1305 FEATURE_VALUE_TYPE(chrome::android::kSpecialLocaleFeature)}, 1302 FEATURE_VALUE_TYPE(chrome::android::kSpecialLocaleFeature)},
1306 {"enable-accessibility-tab-switcher", 1303 {"enable-accessibility-tab-switcher",
1307 IDS_FLAGS_ACCESSIBILITY_TAB_SWITCHER_NAME, 1304 IDS_FLAGS_ACCESSIBILITY_TAB_SWITCHER_NAME,
1308 IDS_FLAGS_ACCESSIBILITY_TAB_SWITCHER_DESCRIPTION, kOsAndroid, 1305 IDS_FLAGS_ACCESSIBILITY_TAB_SWITCHER_DESCRIPTION, kOsAndroid,
1309 SINGLE_VALUE_TYPE(switches::kEnableAccessibilityTabSwitcher)}, 1306 SINGLE_VALUE_TYPE(switches::kEnableAccessibilityTabSwitcher)},
(...skipping 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after
2322 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2319 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2323 2320
2324 const FeatureEntry* GetFeatureEntries(size_t* count) { 2321 const FeatureEntry* GetFeatureEntries(size_t* count) {
2325 *count = arraysize(kFeatureEntries); 2322 *count = arraysize(kFeatureEntries);
2326 return kFeatureEntries; 2323 return kFeatureEntries;
2327 } 2324 }
2328 2325
2329 } // namespace testing 2326 } // namespace testing
2330 2327
2331 } // namespace about_flags 2328 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698