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

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

Issue 2011443002: ECDSA default certificate in WebRTC: Remove experiment flag kWebRtcEcdsaDefault. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after
1538 {"try-supported-channel-layouts", 1538 {"try-supported-channel-layouts",
1539 IDS_FLAGS_TRY_SUPPORTED_CHANNEL_LAYOUTS_NAME, 1539 IDS_FLAGS_TRY_SUPPORTED_CHANNEL_LAYOUTS_NAME,
1540 IDS_FLAGS_TRY_SUPPORTED_CHANNEL_LAYOUTS_DESCRIPTION, kOsWin, 1540 IDS_FLAGS_TRY_SUPPORTED_CHANNEL_LAYOUTS_DESCRIPTION, kOsWin,
1541 SINGLE_VALUE_TYPE(switches::kTrySupportedChannelLayouts)}, 1541 SINGLE_VALUE_TYPE(switches::kTrySupportedChannelLayouts)},
1542 #endif 1542 #endif
1543 #if defined(ENABLE_WEBRTC) 1543 #if defined(ENABLE_WEBRTC)
1544 {"enable-webrtc-dtls12", IDS_FLAGS_WEBRTC_DTLS12_NAME, 1544 {"enable-webrtc-dtls12", IDS_FLAGS_WEBRTC_DTLS12_NAME,
1545 IDS_FLAGS_WEBRTC_DTLS12_DESCRIPTION, kOsAll, 1545 IDS_FLAGS_WEBRTC_DTLS12_DESCRIPTION, kOsAll,
1546 SINGLE_VALUE_TYPE(switches::kEnableWebRtcDtls12)}, 1546 SINGLE_VALUE_TYPE(switches::kEnableWebRtcDtls12)},
1547 #endif 1547 #endif
1548 #if defined(ENABLE_WEBRTC)
1549 {"enable-webrtc-ecdsa", IDS_FLAGS_WEBRTC_ECDSA_NAME,
1550 IDS_FLAGS_WEBRTC_ECDSA_DESCRIPTION, kOsAll,
1551 FEATURE_VALUE_TYPE(features::kWebRtcEcdsaDefault)},
1552 #endif
1553 #if defined(OS_MACOSX) 1548 #if defined(OS_MACOSX)
1554 {"app-info-dialog", IDS_FLAGS_APP_INFO_DIALOG_NAME, 1549 {"app-info-dialog", IDS_FLAGS_APP_INFO_DIALOG_NAME,
1555 IDS_FLAGS_APP_INFO_DIALOG_DESCRIPTION, kOsMac, 1550 IDS_FLAGS_APP_INFO_DIALOG_DESCRIPTION, kOsMac,
1556 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAppInfoDialogMac, 1551 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableAppInfoDialogMac,
1557 switches::kDisableAppInfoDialogMac)}, 1552 switches::kDisableAppInfoDialogMac)},
1558 {"mac-views-native-app-windows", 1553 {"mac-views-native-app-windows",
1559 IDS_FLAGS_MAC_VIEWS_NATIVE_APP_WINDOWS_NAME, 1554 IDS_FLAGS_MAC_VIEWS_NATIVE_APP_WINDOWS_NAME,
1560 IDS_FLAGS_MAC_VIEWS_NATIVE_APP_WINDOWS_DESCRIPTION, kOsMac, 1555 IDS_FLAGS_MAC_VIEWS_NATIVE_APP_WINDOWS_DESCRIPTION, kOsMac,
1561 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableMacViewsNativeAppWindows, 1556 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableMacViewsNativeAppWindows,
1562 switches::kDisableMacViewsNativeAppWindows)}, 1557 switches::kDisableMacViewsNativeAppWindows)},
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
2087 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2082 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2088 2083
2089 const FeatureEntry* GetFeatureEntries(size_t* count) { 2084 const FeatureEntry* GetFeatureEntries(size_t* count) {
2090 *count = arraysize(kFeatureEntries); 2085 *count = arraysize(kFeatureEntries);
2091 return kFeatureEntries; 2086 return kFeatureEntries;
2092 } 2087 }
2093 2088
2094 } // namespace testing 2089 } // namespace testing
2095 2090
2096 } // namespace about_flags 2091 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698