OLD | NEW |
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 1330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1341 // Prints version information and quits. | 1341 // Prints version information and quits. |
1342 const char kVersion[] = "version"; | 1342 const char kVersion[] = "version"; |
1343 | 1343 |
1344 // Requests that Chrome connect to a remote viewer process using an IPC | 1344 // Requests that Chrome connect to a remote viewer process using an IPC |
1345 // channel of the given name. | 1345 // channel of the given name. |
1346 const char kViewerConnection[] = "viewer-connection"; | 1346 const char kViewerConnection[] = "viewer-connection"; |
1347 | 1347 |
1348 // Cycle through a series of URLs listed in the specified file. | 1348 // Cycle through a series of URLs listed in the specified file. |
1349 const char kVisitURLs[] = "visit-urls"; | 1349 const char kVisitURLs[] = "visit-urls"; |
1350 | 1350 |
1351 // Secure service URL for Online Wallet service. Used for encyption of one time | 1351 // Secure service URL for Online Wallet service. Used as the base url to escrow |
1352 // pads and to escrow credit card numbers. | 1352 // credit card numbers. |
1353 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url"; | 1353 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url"; |
1354 | 1354 |
1355 // Service URL for Online Wallet service. Used as the base url for Online Wallet | 1355 // Service URL for Online Wallet service. Used as the base url for Online Wallet |
1356 // API calls. | 1356 // API calls. |
1357 const char kWalletServiceUrl[] = "wallet-service-url"; | 1357 const char kWalletServiceUrl[] = "wallet-service-url"; |
1358 | 1358 |
1359 // Enable the "native services" feature of web-intents. | 1359 // Enable the "native services" feature of web-intents. |
1360 const char kWebIntentsNativeServicesEnabled[] = | 1360 const char kWebIntentsNativeServicesEnabled[] = |
1361 "web-intents-native-services-enabled"; | 1361 "web-intents-native-services-enabled"; |
1362 | 1362 |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1615 | 1615 |
1616 // ----------------------------------------------------------------------------- | 1616 // ----------------------------------------------------------------------------- |
1617 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1617 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1618 // | 1618 // |
1619 // You were going to just dump your switches here, weren't you? Instead, please | 1619 // You were going to just dump your switches here, weren't you? Instead, please |
1620 // put them in alphabetical order above, or in order inside the appropriate | 1620 // put them in alphabetical order above, or in order inside the appropriate |
1621 // ifdef at the bottom. The order should match the header. | 1621 // ifdef at the bottom. The order should match the header. |
1622 // ----------------------------------------------------------------------------- | 1622 // ----------------------------------------------------------------------------- |
1623 | 1623 |
1624 } // namespace switches | 1624 } // namespace switches |
OLD | NEW |