OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 // Explicitly allow additional ports using a comma separated list of port | 506 // Explicitly allow additional ports using a comma separated list of port |
507 // numbers. | 507 // numbers. |
508 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 508 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
509 | 509 |
510 // Causes the process to run as an extension subprocess. | 510 // Causes the process to run as an extension subprocess. |
511 const char kExtensionProcess[] = "extension"; | 511 const char kExtensionProcess[] = "extension"; |
512 | 512 |
513 // Frequency in seconds for Extensions auto-update. | 513 // Frequency in seconds for Extensions auto-update. |
514 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; | 514 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; |
515 | 515 |
| 516 // Alternative feedback server to use when submitting user feedback |
| 517 const char kFeedbackServer[] = "feedback-server"; |
| 518 |
516 // The file descriptor limit is set to the value of this switch, subject to the | 519 // The file descriptor limit is set to the value of this switch, subject to the |
517 // OS hard limits. Useful for testing that file descriptor exhaustion is handled | 520 // OS hard limits. Useful for testing that file descriptor exhaustion is handled |
518 // gracefully. | 521 // gracefully. |
519 const char kFileDescriptorLimit[] = "file-descriptor-limit"; | 522 const char kFileDescriptorLimit[] = "file-descriptor-limit"; |
520 | 523 |
521 // Display the First Run experience when the browser is started, regardless of | 524 // Display the First Run experience when the browser is started, regardless of |
522 // whether or not it's actually the first run. | 525 // whether or not it's actually the first run. |
523 const char kFirstRun[] = "first-run"; | 526 const char kFirstRun[] = "first-run"; |
524 | 527 |
525 // Some field tests may rendomized in the browser, and the randomly selected | 528 // Some field tests may rendomized in the browser, and the randomly selected |
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1197 | 1200 |
1198 // ----------------------------------------------------------------------------- | 1201 // ----------------------------------------------------------------------------- |
1199 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1202 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1200 // | 1203 // |
1201 // You were going to just dump your switches here, weren't you? Instead, | 1204 // You were going to just dump your switches here, weren't you? Instead, |
1202 // please put them in alphabetical order above, or in order inside the | 1205 // please put them in alphabetical order above, or in order inside the |
1203 // appropriate ifdef at the bottom. The order should match the header. | 1206 // appropriate ifdef at the bottom. The order should match the header. |
1204 // ----------------------------------------------------------------------------- | 1207 // ----------------------------------------------------------------------------- |
1205 | 1208 |
1206 } // namespace switches | 1209 } // namespace switches |
OLD | NEW |