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

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

Issue 15617002: Merge 201209 "Disable intreactive autocomplete and remove comman..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1500/src/
Patch Set: Created 7 years, 7 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') | no next file » | 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 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after
1260 "wallet-service-use-prod", 1260 "wallet-service-use-prod",
1261 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, 1261 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME,
1262 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, 1262 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION,
1263 kOsCrOS | kOsWin, 1263 kOsCrOS | kOsWin,
1264 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd) 1264 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd)
1265 }, 1265 },
1266 { 1266 {
1267 "enable-interactive-autocomplete", 1267 "enable-interactive-autocomplete",
1268 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, 1268 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME,
1269 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, 1269 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION,
1270 kOsWin | kOsCrOS | kOsAndroid, 1270 kOsWin | kOsCrOS,
1271 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete) 1271 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete)
1272 }, 1272 },
1273 #if defined(USE_AURA) 1273 #if defined(USE_AURA)
1274 { 1274 {
1275 "overscroll-history-navigation", 1275 "overscroll-history-navigation",
1276 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, 1276 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME,
1277 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, 1277 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION,
1278 kOsAll, 1278 kOsAll,
1279 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE( 1279 ENABLE_DISABLE_VALUE_TYPE_AND_VALUE(
1280 switches::kOverscrollHistoryNavigation, "1", 1280 switches::kOverscrollHistoryNavigation, "1",
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
1946 } 1946 }
1947 1947
1948 const Experiment* GetExperiments(size_t* count) { 1948 const Experiment* GetExperiments(size_t* count) {
1949 *count = num_experiments; 1949 *count = num_experiments;
1950 return experiments; 1950 return experiments;
1951 } 1951 }
1952 1952
1953 } // namespace testing 1953 } // namespace testing
1954 1954
1955 } // namespace about_flags 1955 } // namespace about_flags
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698