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

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

Powered by Google App Engine
This is Rietveld 408576698