| 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 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 | 703 |
| 704 // Displays the First Run experience when the browser is started, regardless of | 704 // Displays the First Run experience when the browser is started, regardless of |
| 705 // whether or not it's actually the First Run (this overrides kNoFirstRun). | 705 // whether or not it's actually the First Run (this overrides kNoFirstRun). |
| 706 const char kForceFirstRun[] = "force-first-run"; | 706 const char kForceFirstRun[] = "force-first-run"; |
| 707 | 707 |
| 708 // Forces additional Chrome Variation Ids that will be sent in X-Client-Data | 708 // Forces additional Chrome Variation Ids that will be sent in X-Client-Data |
| 709 // header, specified as a 64-bit encoded list of numeric experiment ids. Ids | 709 // header, specified as a 64-bit encoded list of numeric experiment ids. Ids |
| 710 // prefixed with the character "t" will be treated as Trigger Variation Ids. | 710 // prefixed with the character "t" will be treated as Trigger Variation Ids. |
| 711 const char kForceVariationIds[] = "force-variation-ids"; | 711 const char kForceVariationIds[] = "force-variation-ids"; |
| 712 | 712 |
| 713 // Specifies an alternate URL to use for speaking to Google. Useful for testing. | |
| 714 const char kGoogleBaseURL[] = "google-base-url"; | |
| 715 | |
| 716 // Specifies a custom name for the GSSAPI library to load. | 713 // Specifies a custom name for the GSSAPI library to load. |
| 717 const char kGSSAPILibraryName[] = "gssapi-library-name"; | 714 const char kGSSAPILibraryName[] = "gssapi-library-name"; |
| 718 | 715 |
| 719 // These flags show the man page on Linux. They are equivalent to each | 716 // These flags show the man page on Linux. They are equivalent to each |
| 720 // other. | 717 // other. |
| 721 const char kHelp[] = "help"; | 718 const char kHelp[] = "help"; |
| 722 const char kHelpShort[] = "h"; | 719 const char kHelpShort[] = "h"; |
| 723 | 720 |
| 724 // Makes Windows happy by allowing it to show "Enable access to this program" | 721 // Makes Windows happy by allowing it to show "Enable access to this program" |
| 725 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This only | 722 // checkbox in Add/Remove Programs->Set Program Access and Defaults. This only |
| (...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1398 | 1395 |
| 1399 // ----------------------------------------------------------------------------- | 1396 // ----------------------------------------------------------------------------- |
| 1400 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1397 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1401 // | 1398 // |
| 1402 // You were going to just dump your switches here, weren't you? Instead, please | 1399 // You were going to just dump your switches here, weren't you? Instead, please |
| 1403 // put them in alphabetical order above, or in order inside the appropriate | 1400 // put them in alphabetical order above, or in order inside the appropriate |
| 1404 // ifdef at the bottom. The order should match the header. | 1401 // ifdef at the bottom. The order should match the header. |
| 1405 // ----------------------------------------------------------------------------- | 1402 // ----------------------------------------------------------------------------- |
| 1406 | 1403 |
| 1407 } // namespace switches | 1404 } // namespace switches |
| OLD | NEW |