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

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

Issue 131683003: Password manager: Enabling Public Suffix List matching on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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/password_manager/psl_matching_helper.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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after
1280 "password-manager-reauthentication", 1280 "password-manager-reauthentication",
1281 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, 1281 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME,
1282 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, 1282 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION,
1283 kOsMac | kOsWin, 1283 kOsMac | kOsWin,
1284 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) 1284 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)
1285 }, 1285 },
1286 { 1286 {
1287 "password-autofill-public-suffix-domain-matching", 1287 "password-autofill-public-suffix-domain-matching",
1288 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, 1288 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME,
1289 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, 1289 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION,
1290 kOsAndroid, 1290 kOsAndroid | kOsWin,
1291 ENABLE_DISABLE_VALUE_TYPE( 1291 ENABLE_DISABLE_VALUE_TYPE(
1292 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, 1292 switches::kEnablePasswordAutofillPublicSuffixDomainMatching,
1293 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) 1293 switches::kDisablePasswordAutofillPublicSuffixDomainMatching)
1294 }, 1294 },
1295 { 1295 {
1296 "enable-deferred-image-decoding", 1296 "enable-deferred-image-decoding",
1297 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, 1297 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME,
1298 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, 1298 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION,
1299 kOsMac | kOsLinux | kOsCrOS, 1299 kOsMac | kOsLinux | kOsCrOS,
1300 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) 1300 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding)
(...skipping 1161 matching lines...) Expand 10 before | Expand all | Expand 10 after
2462 } 2462 }
2463 2463
2464 const Experiment* GetExperiments(size_t* count) { 2464 const Experiment* GetExperiments(size_t* count) {
2465 *count = num_experiments; 2465 *count = num_experiments;
2466 return experiments; 2466 return experiments;
2467 } 2467 }
2468 2468
2469 } // namespace testing 2469 } // namespace testing
2470 2470
2471 } // namespace about_flags 2471 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/password_manager/psl_matching_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698