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

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

Issue 21599002: Disable rAc and remove command line flag for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 1267 matching lines...) Expand 10 before | Expand all | Expand 10 after
1278 "wallet-service-use-prod", 1278 "wallet-service-use-prod",
1279 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, 1279 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME,
1280 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, 1280 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION,
1281 kOsCrOS | kOsWin, 1281 kOsCrOS | kOsWin,
1282 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd) 1282 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd)
1283 }, 1283 },
1284 { 1284 {
1285 "enable-interactive-autocomplete", 1285 "enable-interactive-autocomplete",
1286 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, 1286 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME,
1287 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, 1287 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION,
1288 kOsWin | kOsCrOS | kOsAndroid | kOsMac, 1288 kOsWin | kOsCrOS | kOsMac,
1289 ENABLE_DISABLE_VALUE_TYPE( 1289 ENABLE_DISABLE_VALUE_TYPE(
1290 autofill::switches::kEnableInteractiveAutocomplete, 1290 autofill::switches::kEnableInteractiveAutocomplete,
1291 autofill::switches::kDisableInteractiveAutocomplete) 1291 autofill::switches::kDisableInteractiveAutocomplete)
1292 }, 1292 },
1293 #if defined(USE_AURA) 1293 #if defined(USE_AURA)
1294 { 1294 {
1295 "overscroll-history-navigation", 1295 "overscroll-history-navigation",
1296 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME, 1296 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_NAME,
1297 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, 1297 IDS_FLAGS_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION,
1298 kOsAll, 1298 kOsAll,
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after
2119 } 2119 }
2120 2120
2121 const Experiment* GetExperiments(size_t* count) { 2121 const Experiment* GetExperiments(size_t* count) {
2122 *count = num_experiments; 2122 *count = num_experiments;
2123 return experiments; 2123 return experiments;
2124 } 2124 }
2125 2125
2126 } // namespace testing 2126 } // namespace testing
2127 2127
2128 } // namespace about_flags 2128 } // 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