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

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: Rename _mac to _bridge, added TODOs for cleanup per Nico's comments. 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
« no previous file with comments | « no previous file | chrome/browser/ui/autofill/autofill_popup_controller_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 "performance-monitor-gathering", 1118 "performance-monitor-gathering",
1119 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME, 1119 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_NAME,
1120 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION, 1120 IDS_FLAGS_PERFORMANCE_MONITOR_GATHERING_DESCRIPTION,
1121 kOsAll, 1121 kOsAll,
1122 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering) 1122 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering)
1123 }, 1123 },
1124 { 1124 {
1125 "enable-new-autofill-ui", 1125 "enable-new-autofill-ui",
1126 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_NAME, 1126 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_NAME,
1127 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_DESCRIPTION, 1127 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_DESCRIPTION,
1128 kOsWin | kOsLinux, 1128 kOsMac | kOsWin | kOsLinux | kOsCrOS,
1129 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillUi) 1129 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillUi)
1130 }, 1130 },
1131 { 1131 {
1132 "enable-new-autofill-heuristics", 1132 "enable-new-autofill-heuristics",
1133 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_NAME, 1133 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_NAME,
1134 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_DESCRIPTION, 1134 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_DESCRIPTION,
1135 kOsAll, 1135 kOsAll,
1136 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillHeuristics) 1136 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillHeuristics)
1137 }, 1137 },
1138 { 1138 {
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
1630 } 1630 }
1631 1631
1632 const Experiment* GetExperiments(size_t* count) { 1632 const Experiment* GetExperiments(size_t* count) {
1633 *count = num_experiments; 1633 *count = num_experiments;
1634 return experiments; 1634 return experiments;
1635 } 1635 }
1636 1636
1637 } // namespace testing 1637 } // namespace testing
1638 1638
1639 } // namespace about_flags 1639 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/autofill/autofill_popup_controller_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698