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