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

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

Issue 11416047: Add mac UI for password generation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync Created 8 years 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 | Annotate | Revision Log
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 <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after
1080 "debug-packed-apps", 1080 "debug-packed-apps",
1081 IDS_FLAGS_DEBUG_PACKED_APP_NAME, 1081 IDS_FLAGS_DEBUG_PACKED_APP_NAME,
1082 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, 1082 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION,
1083 kOsAll, 1083 kOsAll,
1084 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) 1084 SINGLE_VALUE_TYPE(switches::kDebugPackedApps)
1085 }, 1085 },
1086 { 1086 {
1087 "enable-password-generation", 1087 "enable-password-generation",
1088 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, 1088 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME,
1089 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, 1089 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION,
1090 kOsWin | kOsLinux | kOsCrOS, 1090 kOsAll,
1091 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) 1091 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration)
1092 }, 1092 },
1093 { 1093 {
1094 "crash-on-gpu-hang", 1094 "crash-on-gpu-hang",
1095 IDS_FLAGS_CRASH_ON_GPU_HANG_NAME, 1095 IDS_FLAGS_CRASH_ON_GPU_HANG_NAME,
1096 IDS_FLAGS_CRASH_ON_GPU_HANG_DESCRIPTION, 1096 IDS_FLAGS_CRASH_ON_GPU_HANG_DESCRIPTION,
1097 kOsAll, 1097 kOsAll,
1098 SINGLE_VALUE_TYPE(switches::kCrashOnGpuHang) 1098 SINGLE_VALUE_TYPE(switches::kCrashOnGpuHang)
1099 }, 1099 },
1100 { 1100 {
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
1610 } 1610 }
1611 1611
1612 const Experiment* GetExperiments(size_t* count) { 1612 const Experiment* GetExperiments(size_t* count) {
1613 *count = num_experiments; 1613 *count = num_experiments;
1614 return experiments; 1614 return experiments;
1615 } 1615 }
1616 1616
1617 } // namespace testing 1617 } // namespace testing
1618 1618
1619 } // namespace about_flags 1619 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698