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

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 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after
1099 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, 1099 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME,
1100 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, 1100 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION,
1101 kOsDesktop, 1101 kOsDesktop,
1102 SINGLE_VALUE_TYPE( 1102 SINGLE_VALUE_TYPE(
1103 password_manager::switches::kEnableAutomaticPasswordSaving)}, 1103 password_manager::switches::kEnableAutomaticPasswordSaving)},
1104 {"password-manager-reauthentication", 1104 {"password-manager-reauthentication",
1105 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, 1105 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME,
1106 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, 1106 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION,
1107 kOsMac | kOsWin, 1107 kOsMac | kOsWin,
1108 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)}, 1108 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)},
1109 {"enable-password-change-support",
1110 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_NAME,
1111 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_DESCRIPTION,
1112 kOsWin | kOsLinux | kOsCrOS,
1113 SINGLE_VALUE_TYPE(
1114 password_manager::switches::kEnablePasswordChangeSupport)},
1109 {"enable-password-force-saving", 1115 {"enable-password-force-saving",
1110 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME, 1116 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME,
1111 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION, 1117 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION,
1112 kOsAll, 1118 kOsAll,
1113 SINGLE_VALUE_TYPE(password_manager::switches::kEnablePasswordForceSaving)}, 1119 SINGLE_VALUE_TYPE(password_manager::switches::kEnablePasswordForceSaving)},
1114 {"enable-password-link", 1120 {"enable-password-link",
1115 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME, 1121 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME,
1116 IDS_FLAGS_PASSWORD_MANAGER_LINK_DESCRIPTION, 1122 IDS_FLAGS_PASSWORD_MANAGER_LINK_DESCRIPTION,
1117 kOsAndroid | kOsDesktop, 1123 kOsAndroid | kOsDesktop,
1118 ENABLE_DISABLE_VALUE_TYPE( 1124 ENABLE_DISABLE_VALUE_TYPE(
(...skipping 1641 matching lines...) Expand 10 before | Expand all | Expand 10 after
2760 } 2766 }
2761 2767
2762 const Experiment* GetExperiments(size_t* count) { 2768 const Experiment* GetExperiments(size_t* count) {
2763 *count = num_experiments; 2769 *count = num_experiments;
2764 return experiments; 2770 return experiments;
2765 } 2771 }
2766 2772
2767 } // namespace testing 2773 } // namespace testing
2768 2774
2769 } // namespace about_flags 2775 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/password_manager/chrome_password_manager_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698