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

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: Flipped view, broken out mouse events, style fixes. 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 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 "performance-monitor-gathering", 1127 "performance-monitor-gathering",
1128 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, 1128 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME,
1129 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, 1129 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION,
1130 kOsAll, 1130 kOsAll,
1131 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering) 1131 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering)
1132 }, 1132 },
1133 { 1133 {
1134 "enable-new-autofill-ui", 1134 "enable-new-autofill-ui",
1135 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_NAME, 1135 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_NAME,
1136 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_DESCRIPTION, 1136 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_DESCRIPTION,
1137 kOsWin | kOsLinux, 1137 kOsMac | kOsWin | kOsLinux | kOsCrOS,
1138 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillUi) 1138 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillUi)
1139 }, 1139 },
1140 { 1140 {
1141 "enable-new-autofill-heuristics", 1141 "enable-new-autofill-heuristics",
1142 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_NAME, 1142 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_NAME,
1143 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_DESCRIPTION, 1143 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_DESCRIPTION,
1144 kOsAll, 1144 kOsAll,
1145 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillHeuristics) 1145 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillHeuristics)
1146 }, 1146 },
1147 { 1147 {
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
1639 } 1639 }
1640 1640
1641 const Experiment* GetExperiments(size_t* count) { 1641 const Experiment* GetExperiments(size_t* count) {
1642 *count = num_experiments; 1642 *count = num_experiments;
1643 return experiments; 1643 return experiments;
1644 } 1644 }
1645 1645
1646 } // namespace testing 1646 } // namespace testing
1647 1647
1648 } // namespace about_flags 1648 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698