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

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

Issue 1151373006: Update Confirmation UI for saved password change (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed reviewer comments Created 5 years, 6 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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 999 matching lines...) Expand 10 before | Expand all | Expand 10 after
1010 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, 1010 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME,
1011 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, 1011 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION,
1012 kOsDesktop, 1012 kOsDesktop,
1013 SINGLE_VALUE_TYPE( 1013 SINGLE_VALUE_TYPE(
1014 password_manager::switches::kEnableAutomaticPasswordSaving)}, 1014 password_manager::switches::kEnableAutomaticPasswordSaving)},
1015 {"password-manager-reauthentication", 1015 {"password-manager-reauthentication",
1016 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, 1016 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME,
1017 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, 1017 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION,
1018 kOsMac | kOsWin, 1018 kOsMac | kOsWin,
1019 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)}, 1019 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)},
1020 {"enable-password-change-support",
1021 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_NAME,
1022 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_DESCRIPTION,
1023 kOsAll,
1024 SINGLE_VALUE_TYPE(
1025 password_manager::switches::kEnablePasswordChangeSupport)},
1020 {"enable-password-force-saving", 1026 {"enable-password-force-saving",
1021 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME, 1027 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME,
1022 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION, 1028 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION,
1023 kOsAll, 1029 kOsAll,
1024 SINGLE_VALUE_TYPE(password_manager::switches::kEnablePasswordForceSaving)}, 1030 SINGLE_VALUE_TYPE(password_manager::switches::kEnablePasswordForceSaving)},
1025 {"enable-password-link", 1031 {"enable-password-link",
1026 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME, 1032 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME,
1027 IDS_FLAGS_PASSWORD_MANAGER_LINK_DESCRIPTION, 1033 IDS_FLAGS_PASSWORD_MANAGER_LINK_DESCRIPTION,
1028 kOsAndroid | kOsDesktop, 1034 kOsAndroid | kOsDesktop,
1029 ENABLE_DISABLE_VALUE_TYPE( 1035 ENABLE_DISABLE_VALUE_TYPE(
(...skipping 1569 matching lines...) Expand 10 before | Expand all | Expand 10 after
2599 } 2605 }
2600 2606
2601 const Experiment* GetExperiments(size_t* count) { 2607 const Experiment* GetExperiments(size_t* count) {
2602 *count = num_experiments; 2608 *count = num_experiments;
2603 return experiments; 2609 return experiments;
2604 } 2610 }
2605 2611
2606 } // namespace testing 2612 } // namespace testing
2607 2613
2608 } // namespace about_flags 2614 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698