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

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: comments and tests 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 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after
1039 "debug-packed-apps", 1039 "debug-packed-apps",
1040 IDS_FLAGS_DEBUG_PACKED_APP_NAME, 1040 IDS_FLAGS_DEBUG_PACKED_APP_NAME,
1041 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION, 1041 IDS_FLAGS_DEBUG_PACKED_APP_DESCRIPTION,
1042 kOsAll, 1042 kOsAll,
1043 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) 1043 SINGLE_VALUE_TYPE(switches::kDebugPackedApps)
1044 }, 1044 },
1045 { 1045 {
1046 "enable-password-generation", 1046 "enable-password-generation",
1047 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, 1047 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME,
1048 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, 1048 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION,
1049 kOsWin | kOsLinux | kOsCrOS, 1049 kOsAll,
1050 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) 1050 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration)
1051 }, 1051 },
1052 { 1052 {
1053 "crash-on-gpu-hang", 1053 "crash-on-gpu-hang",
1054 IDS_FLAGS_CRASH_ON_GPU_HANG_NAME, 1054 IDS_FLAGS_CRASH_ON_GPU_HANG_NAME,
1055 IDS_FLAGS_CRASH_ON_GPU_HANG_DESCRIPTION, 1055 IDS_FLAGS_CRASH_ON_GPU_HANG_DESCRIPTION,
1056 kOsAll, 1056 kOsAll,
1057 SINGLE_VALUE_TYPE(switches::kCrashOnGpuHang) 1057 SINGLE_VALUE_TYPE(switches::kCrashOnGpuHang)
1058 }, 1058 },
1059 { 1059 {
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
1554 } 1554 }
1555 1555
1556 const Experiment* GetExperiments(size_t* count) { 1556 const Experiment* GetExperiments(size_t* count) {
1557 *count = num_experiments; 1557 *count = num_experiments;
1558 return experiments; 1558 return experiments;
1559 } 1559 }
1560 1560
1561 } // namespace testing 1561 } // namespace testing
1562 1562
1563 } // namespace about_flags 1563 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698