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

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

Issue 34393007: [Win] Add option to reauthenticate the OS user before revealing passwords. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@password
Patch Set: remove GetNativeWindow from OS_ANDROID Created 7 years 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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1245 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, 1245 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME,
1246 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, 1246 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION,
1247 kOsDesktop, 1247 kOsDesktop,
1248 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, 1248 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration,
1249 autofill::switches::kDisablePasswordGeneration) 1249 autofill::switches::kDisablePasswordGeneration)
1250 }, 1250 },
1251 { 1251 {
1252 "password-manager-reauthentication", 1252 "password-manager-reauthentication",
1253 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, 1253 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME,
1254 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, 1254 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION,
1255 kOsMac, 1255 kOsMac | kOsWin,
1256 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication) 1256 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)
1257 }, 1257 },
1258 { 1258 {
1259 "password-autofill-public-suffix-domain-matching", 1259 "password-autofill-public-suffix-domain-matching",
1260 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, 1260 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME,
1261 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, 1261 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION,
1262 kOsAndroid, 1262 kOsAndroid,
1263 ENABLE_DISABLE_VALUE_TYPE( 1263 ENABLE_DISABLE_VALUE_TYPE(
1264 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, 1264 switches::kEnablePasswordAutofillPublicSuffixDomainMatching,
1265 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) 1265 switches::kDisablePasswordAutofillPublicSuffixDomainMatching)
(...skipping 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after
2359 } 2359 }
2360 2360
2361 const Experiment* GetExperiments(size_t* count) { 2361 const Experiment* GetExperiments(size_t* count) {
2362 *count = num_experiments; 2362 *count = num_experiments;
2363 return experiments; 2363 return experiments;
2364 } 2364 }
2365 2365
2366 } // namespace testing 2366 } // namespace testing
2367 2367
2368 } // namespace about_flags 2368 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | chrome/browser/password_manager/password_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698