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

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

Issue 11740033: [Autofill] Add Mac implementation for the in-browser process popup view. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | 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 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 "performance-monitor-gathering", 1120 "performance-monitor-gathering",
1121 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, 1121 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME,
1122 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, 1122 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION,
1123 kOsAll, 1123 kOsAll,
1124 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering) 1124 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering)
1125 }, 1125 },
1126 { 1126 {
1127 "enable-new-autofill-ui", 1127 "enable-new-autofill-ui",
1128 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_NAME, 1128 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_NAME,
1129 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_DESCRIPTION, 1129 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_DESCRIPTION,
1130 kOsWin | kOsLinux, 1130 kOsMac | kOsWin | kOsLinux | kOsCrOS,
Scott Hess - ex-Googler 2013/01/05 01:06:49 I see that we don't have consistent sorting standa
Ilya Sherman 2013/01/05 03:14:10 Yeah, I copied the order from kOsAll at the top of
1131 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillUi) 1131 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillUi)
1132 }, 1132 },
1133 { 1133 {
1134 "enable-new-autofill-heuristics", 1134 "enable-new-autofill-heuristics",
1135 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_NAME, 1135 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_NAME,
1136 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_DESCRIPTION, 1136 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_DESCRIPTION,
1137 kOsAll, 1137 kOsAll,
1138 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillHeuristics) 1138 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillHeuristics)
1139 }, 1139 },
1140 { 1140 {
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
1632 } 1632 }
1633 1633
1634 const Experiment* GetExperiments(size_t* count) { 1634 const Experiment* GetExperiments(size_t* count) {
1635 *count = num_experiments; 1635 *count = num_experiments;
1636 return experiments; 1636 return experiments;
1637 } 1637 }
1638 1638
1639 } // namespace testing 1639 } // namespace testing
1640 1640
1641 } // namespace about_flags 1641 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698