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

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: enable reauthentication flag on Windows Created 7 years, 2 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
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 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after
1266 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, 1266 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME,
1267 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, 1267 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION,
1268 kOsDesktop, 1268 kOsDesktop,
1269 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, 1269 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration,
1270 autofill::switches::kDisablePasswordGeneration) 1270 autofill::switches::kDisablePasswordGeneration)
1271 }, 1271 },
1272 { 1272 {
1273 "enable-password-manager-reauthentication", 1273 "enable-password-manager-reauthentication",
1274 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, 1274 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME,
1275 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, 1275 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION,
1276 kOsMac, 1276 kOsMac | kOsWin,
cpu_(ooo_6.6-7.5) 2013/10/23 19:54:43 Is this feature only available via about:flags ?
1277 SINGLE_VALUE_TYPE(switches::kEnablePasswordManagerReauthentication) 1277 SINGLE_VALUE_TYPE(switches::kEnablePasswordManagerReauthentication)
1278 }, 1278 },
1279 { 1279 {
1280 "enable-people-search", 1280 "enable-people-search",
1281 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME, 1281 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME,
1282 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION, 1282 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION,
1283 kOsMac | kOsWin | kOsCrOS, 1283 kOsMac | kOsWin | kOsCrOS,
1284 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch) 1284 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch)
1285 }, 1285 },
1286 { 1286 {
(...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after
2312 } 2312 }
2313 2313
2314 const Experiment* GetExperiments(size_t* count) { 2314 const Experiment* GetExperiments(size_t* count) {
2315 *count = num_experiments; 2315 *count = num_experiments;
2316 return experiments; 2316 return experiments;
2317 } 2317 }
2318 2318
2319 } // namespace testing 2319 } // namespace testing
2320 2320
2321 } // namespace about_flags 2321 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698