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

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: Unify default text color. Use integers instead of enums. Simplify delegate. Created 6 years, 2 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 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after
1056 "debug-packed-apps", 1056 "debug-packed-apps",
1057 IDS_FLAGS_DEBUG_PACKED_APP_NAME, 1057 IDS_FLAGS_DEBUG_PACKED_APP_NAME,
1058 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, 1058 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION,
1059 kOsDesktop, 1059 kOsDesktop,
1060 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) 1060 SINGLE_VALUE_TYPE(switches::kDebugPackedApps)
1061 }, 1061 },
1062 { 1062 {
1063 "enable-password-generation", 1063 "enable-password-generation",
1064 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, 1064 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME,
1065 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, 1065 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION,
1066 kOsWin | kOsLinux | kOsCrOS | kOsMac, 1066 kOsWin | kOsLinux | kOsCrOS | kOsMac | kOsAndroid,
1067 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration, 1067 ENABLE_DISABLE_VALUE_TYPE(autofill::switches::kEnablePasswordGeneration,
1068 autofill::switches::kDisablePasswordGeneration) 1068 autofill::switches::kDisablePasswordGeneration)
1069 }, 1069 },
1070 { 1070 {
1071 "enable-automatic-password-saving", 1071 "enable-automatic-password-saving",
1072 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME, 1072 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_NAME,
1073 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION, 1073 IDS_FLAGS_ENABLE_AUTOMATIC_PASSWORD_SAVING_DESCRIPTION,
1074 kOsDesktop, 1074 kOsDesktop,
1075 SINGLE_VALUE_TYPE( 1075 SINGLE_VALUE_TYPE(
1076 password_manager::switches::kEnableAutomaticPasswordSaving) 1076 password_manager::switches::kEnableAutomaticPasswordSaving)
(...skipping 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after
2557 } 2557 }
2558 2558
2559 const Experiment* GetExperiments(size_t* count) { 2559 const Experiment* GetExperiments(size_t* count) {
2560 *count = num_experiments; 2560 *count = num_experiments;
2561 return experiments; 2561 return experiments;
2562 } 2562 }
2563 2563
2564 } // namespace testing 2564 } // namespace testing
2565 2565
2566 } // namespace about_flags 2566 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698