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

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

Issue 1815983003: Remove deprecated QTKit Video Capture Support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 IDS_FLAGS_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_NAME, 980 IDS_FLAGS_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_NAME,
981 IDS_FLAGS_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_DESCRIPTION, 981 IDS_FLAGS_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_DESCRIPTION,
982 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, 982 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS,
983 SINGLE_VALUE_TYPE(switches::kEnableSupervisedUserManagedBookmarksFolder)}, 983 SINGLE_VALUE_TYPE(switches::kEnableSupervisedUserManagedBookmarksFolder)},
984 #if defined(ENABLE_APP_LIST) 984 #if defined(ENABLE_APP_LIST)
985 {"enable-sync-app-list", IDS_FLAGS_SYNC_APP_LIST_NAME, 985 {"enable-sync-app-list", IDS_FLAGS_SYNC_APP_LIST_NAME,
986 IDS_FLAGS_SYNC_APP_LIST_DESCRIPTION, kOsDesktop, 986 IDS_FLAGS_SYNC_APP_LIST_DESCRIPTION, kOsDesktop,
987 ENABLE_DISABLE_VALUE_TYPE(app_list::switches::kEnableSyncAppList, 987 ENABLE_DISABLE_VALUE_TYPE(app_list::switches::kEnableSyncAppList,
988 app_list::switches::kDisableSyncAppList)}, 988 app_list::switches::kDisableSyncAppList)},
989 #endif 989 #endif
990 #if defined(OS_MACOSX)
991 {"enable-avfoundation", IDS_FLAGS_AVFOUNDATION_NAME,
992 IDS_FLAGS_AVFOUNDATION_DESCRIPTION, kOsMac,
993 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAVFoundation,
994 switches::kForceQTKit)},
995 #endif
996 {"lcd-text-aa", IDS_FLAGS_LCD_TEXT_NAME, IDS_FLAGS_LCD_TEXT_DESCRIPTION, 990 {"lcd-text-aa", IDS_FLAGS_LCD_TEXT_NAME, IDS_FLAGS_LCD_TEXT_DESCRIPTION,
997 kOsDesktop, ENABLE_DISABLE_VALUE_TYPE(switches::kEnableLCDText, 991 kOsDesktop, ENABLE_DISABLE_VALUE_TYPE(switches::kEnableLCDText,
998 switches::kDisableLCDText)}, 992 switches::kDisableLCDText)},
999 {"enable-offer-store-unmasked-wallet-cards", 993 {"enable-offer-store-unmasked-wallet-cards",
1000 IDS_FLAGS_OFFER_STORE_UNMASKED_WALLET_CARDS, 994 IDS_FLAGS_OFFER_STORE_UNMASKED_WALLET_CARDS,
1001 IDS_FLAGS_OFFER_STORE_UNMASKED_WALLET_CARDS_DESCRIPTION, kOsAll, 995 IDS_FLAGS_OFFER_STORE_UNMASKED_WALLET_CARDS_DESCRIPTION, kOsAll,
1002 ENABLE_DISABLE_VALUE_TYPE( 996 ENABLE_DISABLE_VALUE_TYPE(
1003 autofill::switches::kEnableOfferStoreUnmaskedWalletCards, 997 autofill::switches::kEnableOfferStoreUnmaskedWalletCards,
1004 autofill::switches::kDisableOfferStoreUnmaskedWalletCards)}, 998 autofill::switches::kDisableOfferStoreUnmaskedWalletCards)},
1005 {"enable-offline-auto-reload", IDS_FLAGS_OFFLINE_AUTO_RELOAD_NAME, 999 {"enable-offline-auto-reload", IDS_FLAGS_OFFLINE_AUTO_RELOAD_NAME,
(...skipping 993 matching lines...) Expand 10 before | Expand all | Expand 10 after
1999 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 1993 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2000 1994
2001 const FeatureEntry* GetFeatureEntries(size_t* count) { 1995 const FeatureEntry* GetFeatureEntries(size_t* count) {
2002 *count = arraysize(kFeatureEntries); 1996 *count = arraysize(kFeatureEntries);
2003 return kFeatureEntries; 1997 return kFeatureEntries;
2004 } 1998 }
2005 1999
2006 } // namespace testing 2000 } // namespace testing
2007 2001
2008 } // namespace about_flags 2002 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698