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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 // Explicitly allows additional ports using a comma-separated list of port | 582 // Explicitly allows additional ports using a comma-separated list of port |
583 // numbers. | 583 // numbers. |
584 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 584 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
585 | 585 |
586 // Marks a renderer as extension process. | 586 // Marks a renderer as extension process. |
587 const char kExtensionProcess[] = "extension-process"; | 587 const char kExtensionProcess[] = "extension-process"; |
588 | 588 |
589 // Frequency in seconds for Extensions auto-update. | 589 // Frequency in seconds for Extensions auto-update. |
590 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; | 590 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; |
591 | 591 |
| 592 // Should we use an external Autofill popup? Default is no. |
| 593 const char kExternalAutofillPopup[] = "external-autofill-popup"; |
| 594 |
592 // These two flags are added around the switches about:flags adds to the | 595 // These two flags are added around the switches about:flags adds to the |
593 // command line. This is useful to see which switches were added by about:flags | 596 // command line. This is useful to see which switches were added by about:flags |
594 // on about:version. They don't have any effect. | 597 // on about:version. They don't have any effect. |
595 const char kFlagSwitchesBegin[] = "flag-switches-begin"; | 598 const char kFlagSwitchesBegin[] = "flag-switches-begin"; |
596 const char kFlagSwitchesEnd[] = "flag-switches-end"; | 599 const char kFlagSwitchesEnd[] = "flag-switches-end"; |
597 | 600 |
598 // Alternative feedback server to use when submitting user feedback | 601 // Alternative feedback server to use when submitting user feedback |
599 const char kFeedbackServer[] = "feedback-server"; | 602 const char kFeedbackServer[] = "feedback-server"; |
600 | 603 |
601 // The file descriptor limit is set to the value of this switch, subject to the | 604 // The file descriptor limit is set to the value of this switch, subject to the |
(...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1281 | 1284 |
1282 // ----------------------------------------------------------------------------- | 1285 // ----------------------------------------------------------------------------- |
1283 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1286 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1284 // | 1287 // |
1285 // You were going to just dump your switches here, weren't you? Instead, please | 1288 // You were going to just dump your switches here, weren't you? Instead, please |
1286 // put them in alphabetical order above, or in order inside the appropriate | 1289 // put them in alphabetical order above, or in order inside the appropriate |
1287 // ifdef at the bottom. The order should match the header. | 1290 // ifdef at the bottom. The order should match the header. |
1288 // ----------------------------------------------------------------------------- | 1291 // ----------------------------------------------------------------------------- |
1289 | 1292 |
1290 } // namespace switches | 1293 } // namespace switches |
OLD | NEW |