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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 // 1 - Allow multiple spellcheckers to work simultaneously. | 556 // 1 - Allow multiple spellcheckers to work simultaneously. |
557 // 2 - Allow automatic detection of spell check language. | 557 // 2 - Allow automatic detection of spell check language. |
558 // TODO(sidchat): Implement the above fetaures to work under this flag. | 558 // TODO(sidchat): Implement the above fetaures to work under this flag. |
559 const char kExperimentalSpellcheckerFeatures[] = | 559 const char kExperimentalSpellcheckerFeatures[] = |
560 "experimental-spellchecker-features"; | 560 "experimental-spellchecker-features"; |
561 | 561 |
562 // Explicitly allow additional ports using a comma separated list of port | 562 // Explicitly allow additional ports using a comma separated list of port |
563 // numbers. | 563 // numbers. |
564 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 564 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
565 | 565 |
| 566 // Marks a renderer as extension process. |
| 567 const char kExtensionProcess[] = "extension-process"; |
| 568 |
566 // Frequency in seconds for Extensions auto-update. | 569 // Frequency in seconds for Extensions auto-update. |
567 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; | 570 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; |
568 | 571 |
569 // These two flags are added around the switches about:flags adds to the | 572 // These two flags are added around the switches about:flags adds to the |
570 // command line. This is useful to see which switches were added by about:flags | 573 // command line. This is useful to see which switches were added by about:flags |
571 // on about:version. They don't have any effect. | 574 // on about:version. They don't have any effect. |
572 const char kFlagSwitchesBegin[] = "flag-switches-begin"; | 575 const char kFlagSwitchesBegin[] = "flag-switches-begin"; |
573 const char kFlagSwitchesEnd[] = "flag-switches-end"; | 576 const char kFlagSwitchesEnd[] = "flag-switches-end"; |
574 | 577 |
575 // Alternative feedback server to use when submitting user feedback | 578 // Alternative feedback server to use when submitting user feedback |
(...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1246 | 1249 |
1247 // ----------------------------------------------------------------------------- | 1250 // ----------------------------------------------------------------------------- |
1248 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1251 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1249 // | 1252 // |
1250 // You were going to just dump your switches here, weren't you? Instead, | 1253 // You were going to just dump your switches here, weren't you? Instead, |
1251 // please put them in alphabetical order above, or in order inside the | 1254 // please put them in alphabetical order above, or in order inside the |
1252 // appropriate ifdef at the bottom. The order should match the header. | 1255 // appropriate ifdef at the bottom. The order should match the header. |
1253 // ----------------------------------------------------------------------------- | 1256 // ----------------------------------------------------------------------------- |
1254 | 1257 |
1255 } // namespace switches | 1258 } // namespace switches |
OLD | NEW |