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

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

Issue 134303003: Reland: Password manager: Gnome support for Public Suffix List matching (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add scoped_ptr 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/password_manager/native_backend_gnome_x.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 1282 matching lines...) Expand 10 before | Expand all | Expand 10 after
1293 "password-manager-reauthentication", 1293 "password-manager-reauthentication",
1294 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, 1294 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME,
1295 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, 1295 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION,
1296 kOsMac | kOsWin, 1296 kOsMac | kOsWin,
1297 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) 1297 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)
1298 }, 1298 },
1299 { 1299 {
1300 "password-autofill-public-suffix-domain-matching", 1300 "password-autofill-public-suffix-domain-matching",
1301 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, 1301 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME,
1302 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, 1302 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION,
1303 kOsAndroid | kOsWin, 1303 kOsAndroid | kOsWin | kOsLinux,
1304 ENABLE_DISABLE_VALUE_TYPE( 1304 ENABLE_DISABLE_VALUE_TYPE(
1305 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, 1305 switches::kEnablePasswordAutofillPublicSuffixDomainMatching,
1306 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) 1306 switches::kDisablePasswordAutofillPublicSuffixDomainMatching)
1307 }, 1307 },
1308 { 1308 {
1309 "enable-deferred-image-decoding", 1309 "enable-deferred-image-decoding",
1310 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME, 1310 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_NAME,
1311 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION, 1311 IDS_FLAGS_ENABLE_DEFERRED_IMAGE_DECODING_DESCRIPTION,
1312 kOsMac | kOsLinux | kOsCrOS, 1312 kOsMac | kOsLinux | kOsCrOS,
1313 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding) 1313 SINGLE_VALUE_TYPE(switches::kEnableDeferredImageDecoding)
(...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after
2457 } 2457 }
2458 2458
2459 const Experiment* GetExperiments(size_t* count) { 2459 const Experiment* GetExperiments(size_t* count) {
2460 *count = num_experiments; 2460 *count = num_experiments;
2461 return experiments; 2461 return experiments;
2462 } 2462 }
2463 2463
2464 } // namespace testing 2464 } // namespace testing
2465 2465
2466 } // namespace about_flags 2466 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/password_manager/native_backend_gnome_x.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698