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

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

Issue 606153002: [android] Password generation UI for android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove platform guards. Created 6 years, 1 month 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 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after
1063 "debug-packed-apps", 1063 "debug-packed-apps",
1064 IDS_FLAGS_DEBUG_PACKED_APP_NAME, 1064 IDS_FLAGS_DEBUG_PACKED_APP_NAME,
1065 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, 1065 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION,
1066 kOsDesktop, 1066 kOsDesktop,
1067 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) 1067 SINGLE_VALUE_TYPE(switches::kDebugPackedApps)
1068 }, 1068 },
1069 { 1069 {
1070 "enable-password-generation", 1070 "enable-password-generation",
1071 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, 1071 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME,
1072 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, 1072 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION,
1073 kOsWin | kOsLinux | kOsCrOS | kOsMac, 1073 kOsWin | kOsLinux | kOsCrOS | kOsMac | kOsAndroid,
1074 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, 1074 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration,
1075 autofill::switches::kDisablePasswordGeneration) 1075 autofill::switches::kDisablePasswordGeneration)
1076 }, 1076 },
1077 { 1077 {
1078 "enable-automatic-password-saving", 1078 "enable-automatic-password-saving",
1079 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, 1079 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME,
1080 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, 1080 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION,
1081 kOsDesktop, 1081 kOsDesktop,
1082 SINGLE_VALUE_TYPE( 1082 SINGLE_VALUE_TYPE(
1083 password_manager::switches::kEnableAutomaticPasswordSaving) 1083 password_manager::switches::kEnableAutomaticPasswordSaving)
(...skipping 1513 matching lines...) Expand 10 before | Expand all | Expand 10 after
2597 } 2597 }
2598 2598
2599 const Experiment* GetExperiments(size_t* count) { 2599 const Experiment* GetExperiments(size_t* count) {
2600 *count = num_experiments; 2600 *count = num_experiments;
2601 return experiments; 2601 return experiments;
2602 } 2602 }
2603 2603
2604 } // namespace testing 2604 } // namespace testing
2605 2605
2606 } // namespace about_flags 2606 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698