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

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

Issue 12330059: Enable autofill dialog codepath on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: #if defined(X) instead of #if X; removed unused grit section. 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 | « build/common.gypi ('k') | chrome/renderer/chrome_render_process_observer.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 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1217 "enable-experimental-form-filling", 1217 "enable-experimental-form-filling",
1218 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_NAME, 1218 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_NAME,
1219 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_DESCRIPTION, 1219 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_DESCRIPTION,
1220 kOsWin | kOsCrOS, 1220 kOsWin | kOsCrOS,
1221 SINGLE_VALUE_TYPE(switches::kEnableExperimentalFormFilling) 1221 SINGLE_VALUE_TYPE(switches::kEnableExperimentalFormFilling)
1222 }, 1222 },
1223 { 1223 {
1224 "enable-interactive-autocomplete", 1224 "enable-interactive-autocomplete",
1225 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, 1225 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME,
1226 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, 1226 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION,
1227 kOsWin | kOsCrOS, 1227 kOsWin | kOsCrOS | kOsAndroid,
1228 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete) 1228 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete)
1229 }, 1229 },
1230 #if defined(USE_AURA) 1230 #if defined(USE_AURA)
1231 { 1231 {
1232 "enable-overscroll-history-navigation", 1232 "enable-overscroll-history-navigation",
1233 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_NAME, 1233 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_NAME,
1234 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, 1234 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION,
1235 kOsAll, 1235 kOsAll,
1236 SINGLE_VALUE_TYPE(switches::kEnableOverscrollHistoryNavigation) 1236 SINGLE_VALUE_TYPE(switches::kEnableOverscrollHistoryNavigation)
1237 }, 1237 },
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
1721 } 1721 }
1722 1722
1723 const Experiment* GetExperiments(size_t* count) { 1723 const Experiment* GetExperiments(size_t* count) {
1724 *count = num_experiments; 1724 *count = num_experiments;
1725 return experiments; 1725 return experiments;
1726 } 1726 }
1727 1727
1728 } // namespace testing 1728 } // namespace testing
1729 1729
1730 } // namespace about_flags 1730 } // namespace about_flags
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/renderer/chrome_render_process_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698