| 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 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 // Enables the benchmarking extensions. | 479 // Enables the benchmarking extensions. |
| 480 const char kEnableBenchmarking[] = "enable-benchmarking"; | 480 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 481 | 481 |
| 482 // Enables the bundled PPAPI version of Flash. | 482 // Enables the bundled PPAPI version of Flash. |
| 483 const char kEnableBundledPpapiFlash[] = "enable-bundled-ppapi-flash"; | 483 const char kEnableBundledPpapiFlash[] = "enable-bundled-ppapi-flash"; |
| 484 | 484 |
| 485 // Enables Chrome To Mobile. | 485 // Enables Chrome To Mobile. |
| 486 // This switch is not currently respected; use the disable switch instead. | 486 // This switch is not currently respected; use the disable switch instead. |
| 487 const char kEnableChromeToMobile[] = "enable-chrome-to-mobile"; | 487 const char kEnableChromeToMobile[] = "enable-chrome-to-mobile"; |
| 488 | 488 |
| 489 // Enables the new cloud policy stack. |
| 490 const char kEnableCloudPolicyService[] = "enable-cloud-policy-service"; |
| 491 |
| 489 // This applies only when the process type is "service". Enables the Cloud | 492 // This applies only when the process type is "service". Enables the Cloud |
| 490 // Print Proxy component within the service process. | 493 // Print Proxy component within the service process. |
| 491 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 494 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
| 492 | 495 |
| 493 // Enables establishing a backup TCP connection if a specified timeout is | 496 // Enables establishing a backup TCP connection if a specified timeout is |
| 494 // exceeded. | 497 // exceeded. |
| 495 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; | 498 const char kEnableConnectBackupJobs[] = "enable-connect-backup-jobs"; |
| 496 | 499 |
| 497 // Enables web developers to create apps for Chrome without using crx packages. | 500 // Enables web developers to create apps for Chrome without using crx packages. |
| 498 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; | 501 const char kEnableCrxlessWebApps[] = "enable-crxless-web-apps"; |
| (...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1446 | 1449 |
| 1447 // ----------------------------------------------------------------------------- | 1450 // ----------------------------------------------------------------------------- |
| 1448 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1451 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1449 // | 1452 // |
| 1450 // You were going to just dump your switches here, weren't you? Instead, please | 1453 // You were going to just dump your switches here, weren't you? Instead, please |
| 1451 // put them in alphabetical order above, or in order inside the appropriate | 1454 // put them in alphabetical order above, or in order inside the appropriate |
| 1452 // ifdef at the bottom. The order should match the header. | 1455 // ifdef at the bottom. The order should match the header. |
| 1453 // ----------------------------------------------------------------------------- | 1456 // ----------------------------------------------------------------------------- |
| 1454 | 1457 |
| 1455 } // namespace switches | 1458 } // namespace switches |
| OLD | NEW |