| 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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 // GAIA login page, an info bar can help the user login. | 552 // GAIA login page, an info bar can help the user login. |
| 553 const char kEnableAutologin[] = "enable-autologin"; | 553 const char kEnableAutologin[] = "enable-autologin"; |
| 554 | 554 |
| 555 // Enables running all beforeunload handlers before closing any browser windows | 555 // Enables running all beforeunload handlers before closing any browser windows |
| 556 // on shutdown. | 556 // on shutdown. |
| 557 const char kEnableBatchedShutdown[] = "enable-batched-shutdown"; | 557 const char kEnableBatchedShutdown[] = "enable-batched-shutdown"; |
| 558 | 558 |
| 559 // Enables the benchmarking extensions. | 559 // Enables the benchmarking extensions. |
| 560 const char kEnableBenchmarking[] = "enable-benchmarking"; | 560 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 561 | 561 |
| 562 // Enables client hints, which adds hints about browser state to HTTP requests. |
| 563 const char kEnableClientHints[] = "enable-client-hints"; |
| 564 |
| 562 // Enables pushing cloud policy to Chrome using an invalidation service. | 565 // Enables pushing cloud policy to Chrome using an invalidation service. |
| 563 const char kEnableCloudPolicyPush[] = "enable-cloud-policy-push"; | 566 const char kEnableCloudPolicyPush[] = "enable-cloud-policy-push"; |
| 564 | 567 |
| 565 // This applies only when the process type is "service". Enables the Cloud | 568 // This applies only when the process type is "service". Enables the Cloud |
| 566 // Print Proxy component within the service process. | 569 // Print Proxy component within the service process. |
| 567 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 570 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
| 568 | 571 |
| 569 // Enables fetching and storing cloud policy for components. This currently | 572 // Enables fetching and storing cloud policy for components. This currently |
| 570 // supports policy for extensions on Chrome OS. | 573 // supports policy for extensions on Chrome OS. |
| 571 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; | 574 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; |
| (...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1641 | 1644 |
| 1642 // ----------------------------------------------------------------------------- | 1645 // ----------------------------------------------------------------------------- |
| 1643 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1646 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1644 // | 1647 // |
| 1645 // You were going to just dump your switches here, weren't you? Instead, please | 1648 // You were going to just dump your switches here, weren't you? Instead, please |
| 1646 // put them in alphabetical order above, or in order inside the appropriate | 1649 // put them in alphabetical order above, or in order inside the appropriate |
| 1647 // ifdef at the bottom. The order should match the header. | 1650 // ifdef at the bottom. The order should match the header. |
| 1648 // ----------------------------------------------------------------------------- | 1651 // ----------------------------------------------------------------------------- |
| 1649 | 1652 |
| 1650 } // namespace switches | 1653 } // namespace switches |
| OLD | NEW |