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

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: determine if password is blank using SAM API Created 7 years, 1 month 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 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
1252 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, 1252 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME,
1253 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, 1253 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION,
1254 kOsDesktop, 1254 kOsDesktop,
1255 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, 1255 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration,
1256 autofill::switches::kDisablePasswordGeneration) 1256 autofill::switches::kDisablePasswordGeneration)
1257 }, 1257 },
1258 { 1258 {
1259 "enable-password-manager-reauthentication", 1259 "enable-password-manager-reauthentication",
1260 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, 1260 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME,
1261 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, 1261 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION,
1262 kOsMac, 1262 kOsMac | kOsWin,
1263 SINGLE_VALUE_TYPE(switches::kEnablePasswordManagerReauthentication) 1263 SINGLE_VALUE_TYPE(switches::kEnablePasswordManagerReauthentication)
1264 }, 1264 },
1265 { 1265 {
1266 "enable-people-search", 1266 "enable-people-search",
1267 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME, 1267 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME,
1268 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION, 1268 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION,
1269 kOsMac | kOsWin | kOsCrOS, 1269 kOsMac | kOsWin | kOsCrOS,
1270 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch) 1270 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch)
1271 }, 1271 },
1272 { 1272 {
(...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after
2308 } 2308 }
2309 2309
2310 const Experiment* GetExperiments(size_t* count) { 2310 const Experiment* GetExperiments(size_t* count) {
2311 *count = num_experiments; 2311 *count = num_experiments;
2312 return experiments; 2312 return experiments;
2313 } 2313 }
2314 2314
2315 } // namespace testing 2315 } // namespace testing
2316 2316
2317 } // namespace about_flags 2317 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698