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

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

Issue 12260054: [Autofill] Enable heuristic detection of credit card issuer fields. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 10 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 | « chrome/app/generated_resources.grd ('k') | chrome/browser/autofill/address_field.h » ('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 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering) 1200 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering)
1201 }, 1201 },
1202 { 1202 {
1203 "enable-new-autofill-ui", 1203 "enable-new-autofill-ui",
1204 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_NAME, 1204 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_NAME,
1205 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_DESCRIPTION, 1205 IDS_FLAGS_ENABLE_NEW_AUTOFILL_UI_DESCRIPTION,
1206 kOsDesktop, 1206 kOsDesktop,
1207 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillUi) 1207 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillUi)
1208 }, 1208 },
1209 { 1209 {
1210 "enable-new-autofill-heuristics",
1211 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_NAME,
1212 IDS_FLAGS_ENABLE_NEW_AUTOFILL_HEURISTICS_DESCRIPTION,
1213 kOsAll,
1214 SINGLE_VALUE_TYPE(switches::kEnableNewAutofillHeuristics)
1215 },
1216 {
1217 "show-app-list-shortcut", 1210 "show-app-list-shortcut",
1218 IDS_FLAGS_SHOW_APP_LIST_SHORTCUT_NAME, 1211 IDS_FLAGS_SHOW_APP_LIST_SHORTCUT_NAME,
1219 IDS_FLAGS_SHOW_APP_LIST_SHORTCUT_DESCRIPTION, 1212 IDS_FLAGS_SHOW_APP_LIST_SHORTCUT_DESCRIPTION,
1220 kOsWin, 1213 kOsWin,
1221 SINGLE_VALUE_TYPE(switches::kShowAppListShortcut) 1214 SINGLE_VALUE_TYPE(switches::kShowAppListShortcut)
1222 }, 1215 },
1223 { 1216 {
1224 "enable-experimental-form-filling", 1217 "enable-experimental-form-filling",
1225 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_NAME, 1218 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_NAME,
1226 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_DESCRIPTION, 1219 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_DESCRIPTION,
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
1721 } 1714 }
1722 1715
1723 const Experiment* GetExperiments(size_t* count) { 1716 const Experiment* GetExperiments(size_t* count) {
1724 *count = num_experiments; 1717 *count = num_experiments;
1725 return experiments; 1718 return experiments;
1726 } 1719 }
1727 1720
1728 } // namespace testing 1721 } // namespace testing
1729 1722
1730 } // namespace about_flags 1723 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/autofill/address_field.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698