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

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: tiny test fix Created 5 years, 4 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 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, 1097 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME,
1098 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, 1098 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION,
1099 kOsDesktop, 1099 kOsDesktop,
1100 SINGLE_VALUE_TYPE( 1100 SINGLE_VALUE_TYPE(
1101 password_manager::switches::kEnableAutomaticPasswordSaving)}, 1101 password_manager::switches::kEnableAutomaticPasswordSaving)},
1102 {"password-manager-reauthentication", 1102 {"password-manager-reauthentication",
1103 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, 1103 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME,
1104 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, 1104 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION,
1105 kOsMac | kOsWin, 1105 kOsMac | kOsWin,
1106 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)}, 1106 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)},
1107 {"enable-password-change-support",
1108 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_NAME,
1109 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_DESCRIPTION,
1110 kOsWin | kOsLinux | kOsCrOS,
1111 SINGLE_VALUE_TYPE(
1112 password_manager::switches::kEnablePasswordChangeSupport)},
1107 {"enable-password-force-saving", 1113 {"enable-password-force-saving",
1108 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME, 1114 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME,
1109 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION, 1115 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION,
1110 kOsAll, 1116 kOsAll,
1111 SINGLE_VALUE_TYPE(password_manager::switches::kEnablePasswordForceSaving)}, 1117 SINGLE_VALUE_TYPE(password_manager::switches::kEnablePasswordForceSaving)},
1112 {"enable-password-link", 1118 {"enable-password-link",
1113 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME, 1119 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME,
1114 IDS_FLAGS_PASSWORD_MANAGER_LINK_DESCRIPTION, 1120 IDS_FLAGS_PASSWORD_MANAGER_LINK_DESCRIPTION,
1115 kOsAndroid | kOsDesktop, 1121 kOsAndroid | kOsDesktop,
1116 ENABLE_DISABLE_VALUE_TYPE( 1122 ENABLE_DISABLE_VALUE_TYPE(
(...skipping 1617 matching lines...) Expand 10 before | Expand all | Expand 10 after
2734 } 2740 }
2735 2741
2736 const Experiment* GetExperiments(size_t* count) { 2742 const Experiment* GetExperiments(size_t* count) {
2737 *count = num_experiments; 2743 *count = num_experiments;
2738 return experiments; 2744 return experiments;
2739 } 2745 }
2740 2746
2741 } // namespace testing 2747 } // namespace testing
2742 2748
2743 } // namespace about_flags 2749 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698