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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
626 | 626 |
627 // Enables extension scripts badges in the location bar. | 627 // Enables extension scripts badges in the location bar. |
628 const char kEnableScriptBadges[] = "enable-script-badges"; | 628 const char kEnableScriptBadges[] = "enable-script-badges"; |
629 | 629 |
630 // Controls the support for SDCH filtering (dictionary based expansion of | 630 // Controls the support for SDCH filtering (dictionary based expansion of |
631 // content). By default SDCH filtering is enabled. To disable SDCH filtering, | 631 // content). By default SDCH filtering is enabled. To disable SDCH filtering, |
632 // use "--enable-sdch=0" as command line argument. SDCH is currently only | 632 // use "--enable-sdch=0" as command line argument. SDCH is currently only |
633 // supported server-side for searches on google.com. | 633 // supported server-side for searches on google.com. |
634 const char kEnableSdch[] = "enable-sdch"; | 634 const char kEnableSdch[] = "enable-sdch"; |
635 | 635 |
636 // Enable the settings WebUI dialog that installs as a packaged app. | |
637 const char kEnableSettingsApp[] = "enable-settings-app"; | |
benwells
2012/10/15 02:04:42
Nit: = should line up with other lines
tapted
2012/10/15 02:32:39
Done. (..not even sure where that came from -- mig
| |
638 | |
636 // Enable SPDY/3. This is a temporary testing flag. | 639 // Enable SPDY/3. This is a temporary testing flag. |
637 const char kEnableSpdy3[] = "enable-spdy3"; | 640 const char kEnableSpdy3[] = "enable-spdy3"; |
638 | 641 |
639 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. | 642 // Enable SPDY CREDENTIAL frame support. This is a temporary testing flag. |
640 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; | 643 const char kEnableSpdyCredentialFrames[] = "enable-spdy-credential-frames"; |
641 | 644 |
642 // Enables the stacked tabstrip. | 645 // Enables the stacked tabstrip. |
643 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 646 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
644 | 647 |
645 // Enables experimental suggestions pane in New Tab page. | 648 // Enables experimental suggestions pane in New Tab page. |
(...skipping 943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1589 | 1592 |
1590 // ----------------------------------------------------------------------------- | 1593 // ----------------------------------------------------------------------------- |
1591 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1592 // | 1595 // |
1593 // You were going to just dump your switches here, weren't you? Instead, please | 1596 // You were going to just dump your switches here, weren't you? Instead, please |
1594 // put them in alphabetical order above, or in order inside the appropriate | 1597 // put them in alphabetical order above, or in order inside the appropriate |
1595 // ifdef at the bottom. The order should match the header. | 1598 // ifdef at the bottom. The order should match the header. |
1596 // ----------------------------------------------------------------------------- | 1599 // ----------------------------------------------------------------------------- |
1597 | 1600 |
1598 } // namespace switches | 1601 } // namespace switches |
OLD | NEW |