| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 #if defined(OS_CHROMEOS) | 619 #if defined(OS_CHROMEOS) |
| 620 // The name of the pipe over which the Chrome OS login manager will send | 620 // The name of the pipe over which the Chrome OS login manager will send |
| 621 // single-sign-on cookies. | 621 // single-sign-on cookies. |
| 622 const char kCookiePipe[] = "cookie-pipe"; | 622 const char kCookiePipe[] = "cookie-pipe"; |
| 623 | 623 |
| 624 // Enable the redirection of viewable document requests to the Google | 624 // Enable the redirection of viewable document requests to the Google |
| 625 // Document Viewer. | 625 // Document Viewer. |
| 626 const char kEnableGView[] = "enable-gview"; | 626 const char kEnableGView[] = "enable-gview"; |
| 627 #endif | 627 #endif |
| 628 | 628 |
| 629 // Enable experimental support for cached byte-ranges. | 629 // Disable support for cached byte-ranges. |
| 630 const char kEnableByteRangeSupport[] = "enable-byte-range-support"; | 630 const char kDisableByteRangeSupport[] = "disable-byte-range-support"; |
| 631 | 631 |
| 632 // Explicitly allow additional ports using a comma separated list of port | 632 // Explicitly allow additional ports using a comma separated list of port |
| 633 // numbers. | 633 // numbers. |
| 634 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 634 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
| 635 | 635 |
| 636 // Activate (make foreground) myself on launch. Helpful when Chrome | 636 // Activate (make foreground) myself on launch. Helpful when Chrome |
| 637 // is launched on the command line (e.g. by Selenium). Only needed on Mac. | 637 // is launched on the command line (e.g. by Selenium). Only needed on Mac. |
| 638 const char kActivateOnLaunch[] = "activate-on-launch"; | 638 const char kActivateOnLaunch[] = "activate-on-launch"; |
| 639 | 639 |
| 640 // Enable experimental WebGL support. | 640 // Enable experimental WebGL support. |
| 641 const char kEnableExperimentalWebGL[] = "enable-webgl"; | 641 const char kEnableExperimentalWebGL[] = "enable-webgl"; |
| 642 | 642 |
| 643 // Enabled desktop notifications. | 643 // Enabled desktop notifications. |
| 644 const char kEnableDesktopNotifications[] = "enable-desktop-notifications"; | 644 const char kEnableDesktopNotifications[] = "enable-desktop-notifications"; |
| 645 | 645 |
| 646 // Enable Web Sockets support. | 646 // Enable Web Sockets support. |
| 647 const char kEnableWebSockets[] = "enable-web-sockets"; | 647 const char kEnableWebSockets[] = "enable-web-sockets"; |
| 648 | 648 |
| 649 } // namespace switches | 649 } // namespace switches |
| OLD | NEW |