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

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: Fix media_internals_test 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 979 matching lines...) Expand 10 before | Expand all | Expand 10 after
990 IDS_FLAGS_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_NAME, 990 IDS_FLAGS_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_NAME,
991 IDS_FLAGS_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_DESCRIPTION, 991 IDS_FLAGS_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_DESCRIPTION,
992 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, 992 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS,
993 SINGLE_VALUE_TYPE(switches::kEnableSupervisedUserManagedBookmarksFolder)}, 993 SINGLE_VALUE_TYPE(switches::kEnableSupervisedUserManagedBookmarksFolder)},
994 #if defined(ENABLE_APP_LIST) 994 #if defined(ENABLE_APP_LIST)
995 {"enable-sync-app-list", IDS_FLAGS_SYNC_APP_LIST_NAME, 995 {"enable-sync-app-list", IDS_FLAGS_SYNC_APP_LIST_NAME,
996 IDS_FLAGS_SYNC_APP_LIST_DESCRIPTION, kOsDesktop, 996 IDS_FLAGS_SYNC_APP_LIST_DESCRIPTION, kOsDesktop,
997 ENABLE_DISABLE_VALUE_TYPE(app_list::switches::kEnableSyncAppList, 997 ENABLE_DISABLE_VALUE_TYPE(app_list::switches::kEnableSyncAppList,
998 app_list::switches::kDisableSyncAppList)}, 998 app_list::switches::kDisableSyncAppList)},
999 #endif 999 #endif
1000 #if defined(OS_MACOSX)
1001 {"enable-avfoundation", IDS_FLAGS_AVFOUNDATION_NAME,
1002 IDS_FLAGS_AVFOUNDATION_DESCRIPTION, kOsMac,
1003 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAVFoundation,
1004 switches::kForceQTKit)},
1005 #endif
1006 {"lcd-text-aa", IDS_FLAGS_LCD_TEXT_NAME, IDS_FLAGS_LCD_TEXT_DESCRIPTION, 1000 {"lcd-text-aa", IDS_FLAGS_LCD_TEXT_NAME, IDS_FLAGS_LCD_TEXT_DESCRIPTION,
1007 kOsDesktop, ENABLE_DISABLE_VALUE_TYPE(switches::kEnableLCDText, 1001 kOsDesktop, ENABLE_DISABLE_VALUE_TYPE(switches::kEnableLCDText,
1008 switches::kDisableLCDText)}, 1002 switches::kDisableLCDText)},
1009 {"enable-offer-store-unmasked-wallet-cards", 1003 {"enable-offer-store-unmasked-wallet-cards",
1010 IDS_FLAGS_OFFER_STORE_UNMASKED_WALLET_CARDS, 1004 IDS_FLAGS_OFFER_STORE_UNMASKED_WALLET_CARDS,
1011 IDS_FLAGS_OFFER_STORE_UNMASKED_WALLET_CARDS_DESCRIPTION, kOsAll, 1005 IDS_FLAGS_OFFER_STORE_UNMASKED_WALLET_CARDS_DESCRIPTION, kOsAll,
1012 ENABLE_DISABLE_VALUE_TYPE( 1006 ENABLE_DISABLE_VALUE_TYPE(
1013 autofill::switches::kEnableOfferStoreUnmaskedWalletCards, 1007 autofill::switches::kEnableOfferStoreUnmaskedWalletCards,
1014 autofill::switches::kDisableOfferStoreUnmaskedWalletCards)}, 1008 autofill::switches::kDisableOfferStoreUnmaskedWalletCards)},
1015 {"enable-offline-auto-reload", IDS_FLAGS_OFFLINE_AUTO_RELOAD_NAME, 1009 {"enable-offline-auto-reload", IDS_FLAGS_OFFLINE_AUTO_RELOAD_NAME,
(...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after
2016 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2010 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2017 2011
2018 const FeatureEntry* GetFeatureEntries(size_t* count) { 2012 const FeatureEntry* GetFeatureEntries(size_t* count) {
2019 *count = arraysize(kFeatureEntries); 2013 *count = arraysize(kFeatureEntries);
2020 return kFeatureEntries; 2014 return kFeatureEntries;
2021 } 2015 }
2022 2016
2023 } // namespace testing 2017 } // namespace testing
2024 2018
2025 } // namespace about_flags 2019 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698