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

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

Issue 1720403003: Ship the Credential Management API by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test. Created 4 years, 10 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
« no previous file with comments | « no previous file | chrome/browser/ui/views/passwords/manage_passwords_bubble_view_interactive_uitest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1380 matching lines...) Expand 10 before | Expand all | Expand 10 after
1391 MULTI_VALUE_TYPE(kMemoryPressureThresholdChoices)}, 1391 MULTI_VALUE_TYPE(kMemoryPressureThresholdChoices)},
1392 {"wake-on-wifi-packet", IDS_FLAGS_WAKE_ON_PACKETS_NAME, 1392 {"wake-on-wifi-packet", IDS_FLAGS_WAKE_ON_PACKETS_NAME,
1393 IDS_FLAGS_WAKE_ON_PACKETS_DESCRIPTION, kOsCrOSOwnerOnly, 1393 IDS_FLAGS_WAKE_ON_PACKETS_DESCRIPTION, kOsCrOSOwnerOnly,
1394 SINGLE_VALUE_TYPE(chromeos::switches::kWakeOnWifiPacket)}, 1394 SINGLE_VALUE_TYPE(chromeos::switches::kWakeOnWifiPacket)},
1395 #endif // OS_CHROMEOS 1395 #endif // OS_CHROMEOS
1396 {"enable-tab-audio-muting", IDS_FLAGS_TAB_AUDIO_MUTING_NAME, 1396 {"enable-tab-audio-muting", IDS_FLAGS_TAB_AUDIO_MUTING_NAME,
1397 IDS_FLAGS_TAB_AUDIO_MUTING_DESCRIPTION, kOsDesktop, 1397 IDS_FLAGS_TAB_AUDIO_MUTING_DESCRIPTION, kOsDesktop,
1398 SINGLE_VALUE_TYPE(switches::kEnableTabAudioMuting)}, 1398 SINGLE_VALUE_TYPE(switches::kEnableTabAudioMuting)},
1399 {"enable-credential-manager-api", IDS_FLAGS_CREDENTIAL_MANAGER_API_NAME, 1399 {"enable-credential-manager-api", IDS_FLAGS_CREDENTIAL_MANAGER_API_NAME,
1400 IDS_FLAGS_CREDENTIAL_MANAGER_API_DESCRIPTION, kOsAll, 1400 IDS_FLAGS_CREDENTIAL_MANAGER_API_DESCRIPTION, kOsAll,
1401 SINGLE_VALUE_TYPE(switches::kEnableCredentialManagerAPI)}, 1401 FEATURE_VALUE_TYPE(features::kCredentialManagementAPI)},
1402 {"reduced-referrer-granularity", 1402 {"reduced-referrer-granularity",
1403 IDS_FLAGS_REDUCED_REFERRER_GRANULARITY_NAME, 1403 IDS_FLAGS_REDUCED_REFERRER_GRANULARITY_NAME,
1404 IDS_FLAGS_REDUCED_REFERRER_GRANULARITY_DESCRIPTION, kOsAll, 1404 IDS_FLAGS_REDUCED_REFERRER_GRANULARITY_DESCRIPTION, kOsAll,
1405 SINGLE_VALUE_TYPE(switches::kReducedReferrerGranularity)}, 1405 SINGLE_VALUE_TYPE(switches::kReducedReferrerGranularity)},
1406 #if defined(OS_CHROMEOS) 1406 #if defined(OS_CHROMEOS)
1407 {"disable-new-zip-unpacker", IDS_FLAGS_NEW_ZIP_UNPACKER_NAME, 1407 {"disable-new-zip-unpacker", IDS_FLAGS_NEW_ZIP_UNPACKER_NAME,
1408 IDS_FLAGS_NEW_ZIP_UNPACKER_DESCRIPTION, kOsCrOS, 1408 IDS_FLAGS_NEW_ZIP_UNPACKER_DESCRIPTION, kOsCrOS,
1409 SINGLE_DISABLE_VALUE_TYPE(chromeos::switches::kDisableNewZIPUnpacker)}, 1409 SINGLE_DISABLE_VALUE_TYPE(chromeos::switches::kDisableNewZIPUnpacker)},
1410 #endif // defined(OS_CHROMEOS) 1410 #endif // defined(OS_CHROMEOS)
1411 {"enable-credit-card-scan", IDS_FLAGS_CREDIT_CARD_SCAN_NAME, 1411 {"enable-credit-card-scan", IDS_FLAGS_CREDIT_CARD_SCAN_NAME,
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
2024 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2024 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2025 2025
2026 const FeatureEntry* GetFeatureEntries(size_t* count) { 2026 const FeatureEntry* GetFeatureEntries(size_t* count) {
2027 *count = arraysize(kFeatureEntries); 2027 *count = arraysize(kFeatureEntries);
2028 return kFeatureEntries; 2028 return kFeatureEntries;
2029 } 2029 }
2030 2030
2031 } // namespace testing 2031 } // namespace testing
2032 2032
2033 } // namespace about_flags 2033 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/passwords/manage_passwords_bubble_view_interactive_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698