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 namespace switches { | 7 namespace switches { |
8 | 8 |
9 // By default, file:// URIs cannot read other file:// URIs. This is an | 9 // By default, file:// URIs cannot read other file:// URIs. This is an |
10 // override for developers who need the old behavior for testing. | 10 // override for developers who need the old behavior for testing. |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 "enable-experimental-webkit-features"; | 280 "enable-experimental-webkit-features"; |
281 | 281 |
282 // Enables the fastback page cache. | 282 // Enables the fastback page cache. |
283 const char kEnableFastback[] = "enable-fastback"; | 283 const char kEnableFastback[] = "enable-fastback"; |
284 | 284 |
285 // By default, a page is laid out to fill the entire width of the window. | 285 // By default, a page is laid out to fill the entire width of the window. |
286 // This flag fixes the layout of the page to a default of 980 CSS pixels, | 286 // This flag fixes the layout of the page to a default of 980 CSS pixels, |
287 // or to a specified width and height using --enable-fixed-layout=w,h | 287 // or to a specified width and height using --enable-fixed-layout=w,h |
288 const char kEnableFixedLayout[] = "enable-fixed-layout"; | 288 const char kEnableFixedLayout[] = "enable-fixed-layout"; |
289 | 289 |
290 // Enable the JavaScript Full Screen API. | 290 // Disable the JavaScript Full Screen API. |
291 const char kDisableFullScreen[] = "disable-fullscreen"; | 291 const char kDisableFullScreen[] = "disable-fullscreen"; |
292 | 292 |
293 // Enable Text Service Framework(TSF) for text inputting instead of IMM32. This | 293 // Enable Text Service Framework(TSF) for text inputting instead of IMM32. This |
294 // flag is ignored on Metro environment. | 294 // flag is ignored on Metro environment. |
295 const char kEnableTextServicesFramework[] = "enable-text-services-framework"; | 295 const char kEnableTextServicesFramework[] = "enable-text-services-framework"; |
296 | 296 |
297 // Enable Gesture Tap Highlight | 297 // Enable Gesture Tap Highlight |
298 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight"; | 298 const char kEnableGestureTapHighlight[] = "enable-gesture-tap-highlight"; |
299 | 299 |
300 // Enables the GPU benchmarking extension | 300 // Enables the GPU benchmarking extension |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
767 = "disable-fixed-position-creates-stacking-context"; | 767 = "disable-fixed-position-creates-stacking-context"; |
768 | 768 |
769 // Defer image decoding in WebKit until painting. | 769 // Defer image decoding in WebKit until painting. |
770 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 770 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |
771 | 771 |
772 // Enables history navigation in response to horizontal overscroll. | 772 // Enables history navigation in response to horizontal overscroll. |
773 const char kEnableOverscrollHistoryNavigation[] = | 773 const char kEnableOverscrollHistoryNavigation[] = |
774 "enable-overscroll-history-navigation"; | 774 "enable-overscroll-history-navigation"; |
775 | 775 |
776 } // namespace switches | 776 } // namespace switches |
OLD | NEW |