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

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: Browser test fixed 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 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after
1081 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, 1081 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME,
1082 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, 1082 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION,
1083 kOsDesktop, 1083 kOsDesktop,
1084 SINGLE_VALUE_TYPE( 1084 SINGLE_VALUE_TYPE(
1085 password_manager::switches::kEnableAutomaticPasswordSaving)}, 1085 password_manager::switches::kEnableAutomaticPasswordSaving)},
1086 {"password-manager-reauthentication", 1086 {"password-manager-reauthentication",
1087 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME, 1087 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_NAME,
1088 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION, 1088 IDS_FLAGS_PASSWORD_MANAGER_REAUTHENTICATION_DESCRIPTION,
1089 kOsMac | kOsWin, 1089 kOsMac | kOsWin,
1090 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)}, 1090 SINGLE_VALUE_TYPE(switches::kDisablePasswordManagerReauthentication)},
1091 {"enable-password-change-support",
1092 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_NAME,
1093 IDS_FLAGS_ENABLE_PASSWORD_CHANGE_SUPPORT_DESCRIPTION,
1094 kOsWin | kOsLinux | kOsCrOS,
1095 SINGLE_VALUE_TYPE(
1096 password_manager::switches::kEnablePasswordChangeSupport)},
1091 {"enable-password-force-saving", 1097 {"enable-password-force-saving",
1092 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME, 1098 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_NAME,
1093 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION, 1099 IDS_FLAGS_ENABLE_PASSWORD_FORCE_SAVING_DESCRIPTION,
1094 kOsAll, 1100 kOsAll,
1095 SINGLE_VALUE_TYPE(password_manager::switches::kEnablePasswordForceSaving)}, 1101 SINGLE_VALUE_TYPE(password_manager::switches::kEnablePasswordForceSaving)},
1096 {"enable-password-link", 1102 {"enable-password-link",
1097 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME, 1103 IDS_FLAGS_PASSWORD_MANAGER_LINK_NAME,
1098 IDS_FLAGS_PASSWORD_MANAGER_LINK_DESCRIPTION, 1104 IDS_FLAGS_PASSWORD_MANAGER_LINK_DESCRIPTION,
1099 kOsAndroid | kOsDesktop, 1105 kOsAndroid | kOsDesktop,
1100 ENABLE_DISABLE_VALUE_TYPE( 1106 ENABLE_DISABLE_VALUE_TYPE(
(...skipping 1609 matching lines...) Expand 10 before | Expand all | Expand 10 after
2710 } 2716 }
2711 2717
2712 const Experiment* GetExperiments(size_t* count) { 2718 const Experiment* GetExperiments(size_t* count) {
2713 *count = num_experiments; 2719 *count = num_experiments;
2714 return experiments; 2720 return experiments;
2715 } 2721 }
2716 2722
2717 } // namespace testing 2723 } // namespace testing
2718 2724
2719 } // namespace about_flags 2725 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698