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

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: Rebase and most fixes from Albert's initial 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 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 // Prints version information and quits. 1339 // Prints version information and quits.
1340 const char kVersion[] = "version"; 1340 const char kVersion[] = "version";
1341 1341
1342 // Requests that Chrome connect to a remote viewer process using an IPC 1342 // Requests that Chrome connect to a remote viewer process using an IPC
1343 // channel of the given name. 1343 // channel of the given name.
1344 const char kViewerConnection[] = "viewer-connection"; 1344 const char kViewerConnection[] = "viewer-connection";
1345 1345
1346 // Cycle through a series of URLs listed in the specified file. 1346 // Cycle through a series of URLs listed in the specified file.
1347 const char kVisitURLs[] = "visit-urls"; 1347 const char kVisitURLs[] = "visit-urls";
1348 1348
1349 // Secure service url for Online Wallet Service
Dan Beam 2012/12/01 01:19:49 nit: . at end of comments, s/url/URL/, also I thin
ahutter 2012/12/01 04:06:51 Agreed, but Online Wallet is actually the name of
1350 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url";
Dan Beam 2012/11/30 19:55:52 nit: line up = with = above (make some ASCII art)
ahutter 2012/12/01 04:06:51 Done.
1351
1352 // Service url for Online Wallet Service
1353 const char kWalletServiceUrl[] = "wallet-service-url";
Dan Beam 2012/12/01 01:19:49 nit: are we ever talking to wallet *insecurely*? i
ahutter 2012/12/01 04:06:51 The secure url is used for escrowing credit card n
1354
1349 // Enable the "native services" feature of web-intents. 1355 // Enable the "native services" feature of web-intents.
1350 const char kWebIntentsNativeServicesEnabled[] = 1356 const char kWebIntentsNativeServicesEnabled[] =
1351 "web-intents-native-services-enabled"; 1357 "web-intents-native-services-enabled";
1352 1358
1353 // Enable invocation of web intents from web content. 1359 // Enable invocation of web intents from web content.
1354 const char kWebIntentsInvocationEnabled[] = 1360 const char kWebIntentsInvocationEnabled[] =
1355 "enable-web-intents-invocation"; 1361 "enable-web-intents-invocation";
1356 1362
1357 // Adds the given extension ID to all the permission whitelists. 1363 // Adds the given extension ID to all the permission whitelists.
1358 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; 1364 const char kWhitelistedExtensionID[] = "whitelisted-extension-id";
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
1629 #elif defined(OS_WIN) 1635 #elif defined(OS_WIN)
1630 return CommandLine::ForCurrentProcess()->HasSwitch( 1636 return CommandLine::ForCurrentProcess()->HasSwitch(
1631 switches::kEnableChromeStyleDialogs); 1637 switches::kEnableChromeStyleDialogs);
1632 #else 1638 #else
1633 return CommandLine::ForCurrentProcess()->HasSwitch( 1639 return CommandLine::ForCurrentProcess()->HasSwitch(
1634 switches::kEnableChromeStyleDialogs); 1640 switches::kEnableChromeStyleDialogs);
1635 #endif 1641 #endif
1636 } 1642 }
1637 1643
1638 } // namespace chrome 1644 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698