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

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

Issue 25127002: Use production Wallet service URL by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 2 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
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 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after
1330 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering) 1330 SINGLE_VALUE_TYPE(switches::kPerformanceMonitorGathering)
1331 }, 1331 },
1332 { 1332 {
1333 "enable-experimental-form-filling", 1333 "enable-experimental-form-filling",
1334 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_NAME, 1334 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_NAME,
1335 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_DESCRIPTION, 1335 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_DESCRIPTION,
1336 kOsWin | kOsCrOS, 1336 kOsWin | kOsCrOS,
1337 SINGLE_VALUE_TYPE(autofill::switches::kEnableExperimentalFormFilling) 1337 SINGLE_VALUE_TYPE(autofill::switches::kEnableExperimentalFormFilling)
1338 }, 1338 },
1339 { 1339 {
1340 "wallet-service-use-prod", 1340 "wallet-service-use-sandbox",
1341 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_NAME, 1341 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_NAME,
1342 IDS_FLAGS_ENABLE_WALLET_PRODUCTION_SERVICE_DESCRIPTION, 1342 IDS_FLAGS_WALLET_SERVICE_USE_SANDBOX_DESCRIPTION,
1343 kOsCrOS | kOsWin, 1343 kOsCrOS | kOsWin | kOsMac,
1344 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseProd) 1344 SINGLE_VALUE_TYPE(autofill::switches::kWalletServiceUseSandbox)
1345 }, 1345 },
1346 { 1346 {
1347 "enable-interactive-autocomplete", 1347 "enable-interactive-autocomplete",
1348 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, 1348 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME,
1349 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, 1349 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION,
1350 kOsWin | kOsCrOS | kOsAndroid | kOsMac, 1350 kOsWin | kOsCrOS | kOsAndroid | kOsMac,
1351 ENABLE_DISABLE_VALUE_TYPE( 1351 ENABLE_DISABLE_VALUE_TYPE(
1352 autofill::switches::kEnableInteractiveAutocomplete, 1352 autofill::switches::kEnableInteractiveAutocomplete,
1353 autofill::switches::kDisableInteractiveAutocomplete) 1353 autofill::switches::kDisableInteractiveAutocomplete)
1354 }, 1354 },
(...skipping 918 matching lines...) Expand 10 before | Expand all | Expand 10 after
2273 } 2273 }
2274 2274
2275 const Experiment* GetExperiments(size_t* count) { 2275 const Experiment* GetExperiments(size_t* count) {
2276 *count = num_experiments; 2276 *count = num_experiments;
2277 return experiments; 2277 return experiments;
2278 } 2278 }
2279 2279
2280 } // namespace testing 2280 } // namespace testing
2281 2281
2282 } // namespace about_flags 2282 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698