| 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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 | 822 |
| 823 // Scaling quality for capturing tab. Should be one of "fast", "good" or "best". | 823 // Scaling quality for capturing tab. Should be one of "fast", "good" or "best". |
| 824 // One flag for upscaling, one for downscaling. | 824 // One flag for upscaling, one for downscaling. |
| 825 // Upscale defaults to "best". | 825 // Upscale defaults to "best". |
| 826 const char kTabCaptureUpscaleQuality[] = "tab-capture-upscale-quality"; | 826 const char kTabCaptureUpscaleQuality[] = "tab-capture-upscale-quality"; |
| 827 | 827 |
| 828 // Allows for forcing socket connections to http/https to use fixed ports. | 828 // Allows for forcing socket connections to http/https to use fixed ports. |
| 829 const char kTestingFixedHttpPort[] = "testing-fixed-http-port"; | 829 const char kTestingFixedHttpPort[] = "testing-fixed-http-port"; |
| 830 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port"; | 830 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port"; |
| 831 | 831 |
| 832 // Runs the security test for the renderer sandbox. | |
| 833 const char kTestSandbox[] = "test-sandbox"; | |
| 834 | |
| 835 // Type of the current test harness ("browser" or "ui"). | 832 // Type of the current test harness ("browser" or "ui"). |
| 836 const char kTestType[] = "test-type"; | 833 const char kTestType[] = "test-type"; |
| 837 | 834 |
| 838 const char kTouchScrollingMode[] = "touch-scrolling-mode"; | 835 const char kTouchScrollingMode[] = "touch-scrolling-mode"; |
| 839 const char kTouchScrollingModeAsyncTouchmove[] = "async-touchmove"; | 836 const char kTouchScrollingModeAsyncTouchmove[] = "async-touchmove"; |
| 840 const char kTouchScrollingModeSyncTouchmove[] = "sync-touchmove"; | 837 const char kTouchScrollingModeSyncTouchmove[] = "sync-touchmove"; |
| 841 const char kTouchScrollingModeTouchcancel[] = "touchcancel"; | 838 const char kTouchScrollingModeTouchcancel[] = "touchcancel"; |
| 842 | 839 |
| 843 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally, | 840 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally, |
| 844 // can specify the specific trace categories to include (e.g. | 841 // can specify the specific trace categories to include (e.g. |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1002 | 999 |
| 1003 // Disables support for Core Animation plugins. This is triggered when | 1000 // Disables support for Core Animation plugins. This is triggered when |
| 1004 // accelerated compositing is disabled. See http://crbug.com/122430 . | 1001 // accelerated compositing is disabled. See http://crbug.com/122430 . |
| 1005 const char kDisableCoreAnimationPlugins[] = | 1002 const char kDisableCoreAnimationPlugins[] = |
| 1006 "disable-core-animation-plugins"; | 1003 "disable-core-animation-plugins"; |
| 1007 #endif | 1004 #endif |
| 1008 | 1005 |
| 1009 // Don't dump stuff here, follow the same order as the header. | 1006 // Don't dump stuff here, follow the same order as the header. |
| 1010 | 1007 |
| 1011 } // namespace switches | 1008 } // namespace switches |
| OLD | NEW |