| 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 800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 811 | 811 |
| 812 // Scaling quality for capturing tab. Should be one of "fast", "good" or "best". | 812 // Scaling quality for capturing tab. Should be one of "fast", "good" or "best". |
| 813 // One flag for upscaling, one for downscaling. | 813 // One flag for upscaling, one for downscaling. |
| 814 // Upscale defaults to "best". | 814 // Upscale defaults to "best". |
| 815 const char kTabCaptureUpscaleQuality[] = "tab-capture-upscale-quality"; | 815 const char kTabCaptureUpscaleQuality[] = "tab-capture-upscale-quality"; |
| 816 | 816 |
| 817 // Allows for forcing socket connections to http/https to use fixed ports. | 817 // Allows for forcing socket connections to http/https to use fixed ports. |
| 818 const char kTestingFixedHttpPort[] = "testing-fixed-http-port"; | 818 const char kTestingFixedHttpPort[] = "testing-fixed-http-port"; |
| 819 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port"; | 819 const char kTestingFixedHttpsPort[] = "testing-fixed-https-port"; |
| 820 | 820 |
| 821 // Runs the security test for the renderer sandbox. | |
| 822 const char kTestSandbox[] = "test-sandbox"; | |
| 823 | |
| 824 // Type of the current test harness ("browser" or "ui"). | 821 // Type of the current test harness ("browser" or "ui"). |
| 825 const char kTestType[] = "test-type"; | 822 const char kTestType[] = "test-type"; |
| 826 | 823 |
| 827 const char kTouchScrollingMode[] = "touch-scrolling-mode"; | 824 const char kTouchScrollingMode[] = "touch-scrolling-mode"; |
| 828 const char kTouchScrollingModeAsyncTouchmove[] = "async-touchmove"; | 825 const char kTouchScrollingModeAsyncTouchmove[] = "async-touchmove"; |
| 829 const char kTouchScrollingModeSyncTouchmove[] = "sync-touchmove"; | 826 const char kTouchScrollingModeSyncTouchmove[] = "sync-touchmove"; |
| 830 const char kTouchScrollingModeTouchcancel[] = "touchcancel"; | 827 const char kTouchScrollingModeTouchcancel[] = "touchcancel"; |
| 831 | 828 |
| 832 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally, | 829 // Causes TRACE_EVENT flags to be recorded beginning with shutdown. Optionally, |
| 833 // can specify the specific trace categories to include (e.g. | 830 // can specify the specific trace categories to include (e.g. |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 978 | 975 |
| 979 // Disables support for Core Animation plugins. This is triggered when | 976 // Disables support for Core Animation plugins. This is triggered when |
| 980 // accelerated compositing is disabled. See http://crbug.com/122430 . | 977 // accelerated compositing is disabled. See http://crbug.com/122430 . |
| 981 const char kDisableCoreAnimationPlugins[] = | 978 const char kDisableCoreAnimationPlugins[] = |
| 982 "disable-core-animation-plugins"; | 979 "disable-core-animation-plugins"; |
| 983 #endif | 980 #endif |
| 984 | 981 |
| 985 // Don't dump stuff here, follow the same order as the header. | 982 // Don't dump stuff here, follow the same order as the header. |
| 986 | 983 |
| 987 } // namespace switches | 984 } // namespace switches |
| OLD | NEW |