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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 11293078: Integrating Online Wallet into Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes from Raman's code review Created 8 years 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/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 1329 matching lines...) Expand 10 before | Expand all | Expand 10 after
1340 // Specifies a custom URL for the server which reports variation data to the 1340 // Specifies a custom URL for the server which reports variation data to the
1341 // client. See variations_service.cc. 1341 // client. See variations_service.cc.
1342 const char kVariationsServerURL[] = "variations-server-url"; 1342 const char kVariationsServerURL[] = "variations-server-url";
1343 1343
1344 // Prints version information and quits. 1344 // Prints version information and quits.
1345 const char kVersion[] = "version"; 1345 const char kVersion[] = "version";
1346 1346
1347 // Cycle through a series of URLs listed in the specified file. 1347 // Cycle through a series of URLs listed in the specified file.
1348 const char kVisitURLs[] = "visit-urls"; 1348 const char kVisitURLs[] = "visit-urls";
1349 1349
1350 // Secure service url for Online Wallet Service
1351 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url";
1352
1353 // Service url for Online Wallet Service
1354 const char kWalletServiceUrl[] = "wallet-service-url";
1355
1350 // Enable the "native services" feature of web-intents. 1356 // Enable the "native services" feature of web-intents.
1351 const char kWebIntentsNativeServicesEnabled[] = 1357 const char kWebIntentsNativeServicesEnabled[] =
1352 "web-intents-native-services-enabled"; 1358 "web-intents-native-services-enabled";
1353 1359
1354 // Enable invocation of web intents from web content. 1360 // Enable invocation of web intents from web content.
1355 const char kWebIntentsInvocationEnabled[] = 1361 const char kWebIntentsInvocationEnabled[] =
1356 "enable-web-intents-invocation"; 1362 "enable-web-intents-invocation";
1357 1363
1358 // Adds the given extension ID to all the permission whitelists. 1364 // Adds the given extension ID to all the permission whitelists.
1359 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; 1365 const char kWhitelistedExtensionID[] = "whitelisted-extension-id";
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
1623 #elif defined(OS_WIN) 1629 #elif defined(OS_WIN)
1624 return CommandLine::ForCurrentProcess()->HasSwitch( 1630 return CommandLine::ForCurrentProcess()->HasSwitch(
1625 switches::kEnableChromeStyleDialogs); 1631 switches::kEnableChromeStyleDialogs);
1626 #else 1632 #else
1627 return CommandLine::ForCurrentProcess()->HasSwitch( 1633 return CommandLine::ForCurrentProcess()->HasSwitch(
1628 switches::kEnableChromeStyleDialogs); 1634 switches::kEnableChromeStyleDialogs);
1629 #endif 1635 #endif
1630 } 1636 }
1631 1637
1632 } // namespace chrome 1638 } // namespace chrome
OLDNEW
« chrome/browser/autofill/wallet/wallet_data_retriever.cc ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698