| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 // Explicitly allows additional ports using a comma-separated list of port | 566 // Explicitly allows additional ports using a comma-separated list of port |
| 567 // numbers. | 567 // numbers. |
| 568 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 568 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
| 569 | 569 |
| 570 // Marks a renderer as extension process. | 570 // Marks a renderer as extension process. |
| 571 const char kExtensionProcess[] = "extension-process"; | 571 const char kExtensionProcess[] = "extension-process"; |
| 572 | 572 |
| 573 // Frequency in seconds for Extensions auto-update. | 573 // Frequency in seconds for Extensions auto-update. |
| 574 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; | 574 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; |
| 575 | 575 |
| 576 // Should we use an external autofill popup? Default is no. |
| 577 const char kExternalAutofillPopup[] = "external-autofill-popup"; |
| 578 |
| 576 // These two flags are added around the switches about:flags adds to the | 579 // These two flags are added around the switches about:flags adds to the |
| 577 // command line. This is useful to see which switches were added by about:flags | 580 // command line. This is useful to see which switches were added by about:flags |
| 578 // on about:version. They don't have any effect. | 581 // on about:version. They don't have any effect. |
| 579 const char kFlagSwitchesBegin[] = "flag-switches-begin"; | 582 const char kFlagSwitchesBegin[] = "flag-switches-begin"; |
| 580 const char kFlagSwitchesEnd[] = "flag-switches-end"; | 583 const char kFlagSwitchesEnd[] = "flag-switches-end"; |
| 581 | 584 |
| 582 // Alternative feedback server to use when submitting user feedback | 585 // Alternative feedback server to use when submitting user feedback |
| 583 const char kFeedbackServer[] = "feedback-server"; | 586 const char kFeedbackServer[] = "feedback-server"; |
| 584 | 587 |
| 585 // The file descriptor limit is set to the value of this switch, subject to the | 588 // The file descriptor limit is set to the value of this switch, subject to the |
| (...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1262 | 1265 |
| 1263 // ----------------------------------------------------------------------------- | 1266 // ----------------------------------------------------------------------------- |
| 1264 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1267 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1265 // | 1268 // |
| 1266 // You were going to just dump your switches here, weren't you? Instead, please | 1269 // You were going to just dump your switches here, weren't you? Instead, please |
| 1267 // put them in alphabetical order above, or in order inside the appropriate | 1270 // put them in alphabetical order above, or in order inside the appropriate |
| 1268 // ifdef at the bottom. The order should match the header. | 1271 // ifdef at the bottom. The order should match the header. |
| 1269 // ----------------------------------------------------------------------------- | 1272 // ----------------------------------------------------------------------------- |
| 1270 | 1273 |
| 1271 } // namespace switches | 1274 } // namespace switches |
| OLD | NEW |