Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 672 // The time in seconds that an extension event page has between being notified | 672 // The time in seconds that an extension event page has between being notified |
| 673 // of its impending unload and that unload happening. | 673 // of its impending unload and that unload happening. |
| 674 const char kEventPageUnloadingTime[] = "event-page-unloading-time"; | 674 const char kEventPageUnloadingTime[] = "event-page-unloading-time"; |
| 675 | 675 |
| 676 // Marks a renderer as extension process. | 676 // Marks a renderer as extension process. |
| 677 const char kExtensionProcess[] = "extension-process"; | 677 const char kExtensionProcess[] = "extension-process"; |
| 678 | 678 |
| 679 // Frequency in seconds for Extensions auto-update. | 679 // Frequency in seconds for Extensions auto-update. |
| 680 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; | 680 const char kExtensionsUpdateFrequency[] = "extensions-update-frequency"; |
| 681 | 681 |
| 682 // Fakes the channel of the browser for purposes of Variations filtering. This | |
| 683 // is to be used for testing only. Possible values are "stable", "beta", "dev" | |
| 684 // and "canary". | |
|
jwd
2013/01/04 16:19:07
What about a comment here about it only applying w
SteveT
2013/01/04 16:27:07
Done.
| |
| 685 const char kFakeVariationsChannel[] = "fake-variations-channel"; | |
| 686 | |
| 682 // These two flags are added around the switches about:flags adds to the | 687 // These two flags are added around the switches about:flags adds to the |
| 683 // command line. This is useful to see which switches were added by about:flags | 688 // command line. This is useful to see which switches were added by about:flags |
| 684 // on about:version. They don't have any effect. | 689 // on about:version. They don't have any effect. |
| 685 const char kFlagSwitchesBegin[] = "flag-switches-begin"; | 690 const char kFlagSwitchesBegin[] = "flag-switches-begin"; |
| 686 const char kFlagSwitchesEnd[] = "flag-switches-end"; | 691 const char kFlagSwitchesEnd[] = "flag-switches-end"; |
| 687 | 692 |
| 688 // Alternative feedback server to use when submitting user feedback | 693 // Alternative feedback server to use when submitting user feedback |
| 689 const char kFeedbackServer[] = "feedback-server"; | 694 const char kFeedbackServer[] = "feedback-server"; |
| 690 | 695 |
| 691 // The file descriptor limit is set to the value of this switch, subject to the | 696 // The file descriptor limit is set to the value of this switch, subject to the |
| (...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1611 | 1616 |
| 1612 // ----------------------------------------------------------------------------- | 1617 // ----------------------------------------------------------------------------- |
| 1613 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1618 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1614 // | 1619 // |
| 1615 // You were going to just dump your switches here, weren't you? Instead, please | 1620 // You were going to just dump your switches here, weren't you? Instead, please |
| 1616 // put them in alphabetical order above, or in order inside the appropriate | 1621 // put them in alphabetical order above, or in order inside the appropriate |
| 1617 // ifdef at the bottom. The order should match the header. | 1622 // ifdef at the bottom. The order should match the header. |
| 1618 // ----------------------------------------------------------------------------- | 1623 // ----------------------------------------------------------------------------- |
| 1619 | 1624 |
| 1620 } // namespace switches | 1625 } // namespace switches |
| OLD | NEW |