| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  253 // Enable hardware accelerated page painting. |  253 // Enable hardware accelerated page painting. | 
|  254 const char kEnableAcceleratedPainting[]     = "enable-accelerated-painting"; |  254 const char kEnableAcceleratedPainting[]     = "enable-accelerated-painting"; | 
|  255  |  255  | 
|  256 // Enable gpu-accelerated SVG/W3C filters. |  256 // Enable gpu-accelerated SVG/W3C filters. | 
|  257 const char kEnableAcceleratedFilters[]      = "enable-accelerated-filters"; |  257 const char kEnableAcceleratedFilters[]      = "enable-accelerated-filters"; | 
|  258  |  258  | 
|  259 // Turns on extremely verbose logging of accessibility events. |  259 // Turns on extremely verbose logging of accessibility events. | 
|  260 const char kEnableAccessibilityLogging[]    = "enable-accessibility-logging"; |  260 const char kEnableAccessibilityLogging[]    = "enable-accessibility-logging"; | 
|  261  |  261  | 
|  262 // Enables browser plugin compositing experiment. |  262 // Enables browser plugin compositing experiment. | 
|  263 const char kEnableBrowserPluginCompositing[] = |  263 const char kDisableBrowserPluginCompositing[] = | 
|  264     "enable-browser-plugin-compositing"; |  264     "disable-browser-plugin-compositing"; | 
|  265  |  265  | 
|  266 // Enables browser plugin for all types of pages. |  266 // Enables browser plugin for all types of pages. | 
|  267 const char kEnableBrowserPluginForAllViewTypes[] = |  267 const char kEnableBrowserPluginForAllViewTypes[] = | 
|  268     "enable-browser-plugin-for-all-view-types"; |  268     "enable-browser-plugin-for-all-view-types"; | 
|  269  |  269  | 
|  270 const char kEnableBrowserPluginPointerLock[] = |  270 const char kEnableBrowserPluginPointerLock[] = | 
|  271     "enable-browser-plugin-pointer-lock"; |  271     "enable-browser-plugin-pointer-lock"; | 
|  272  |  272  | 
|  273 // Enable/Disable the creation of compositing layers for fixed position |  273 // Enable/Disable the creation of compositing layers for fixed position | 
|  274 // elements. Three options are needed to support four possible scenarios: |  274 // elements. Three options are needed to support four possible scenarios: | 
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  799     = "disable-fixed-position-creates-stacking-context"; |  799     = "disable-fixed-position-creates-stacking-context"; | 
|  800  |  800  | 
|  801 // Defer image decoding in WebKit until painting. |  801 // Defer image decoding in WebKit until painting. | 
|  802 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; |  802 const char kEnableDeferredImageDecoding[] = "enable-deferred-image-decoding"; | 
|  803  |  803  | 
|  804 // Disables history navigation in response to horizontal overscroll. |  804 // Disables history navigation in response to horizontal overscroll. | 
|  805 const char kDisableOverscrollHistoryNavigation[] = |  805 const char kDisableOverscrollHistoryNavigation[] = | 
|  806     "disable-overscroll-history-navigation"; |  806     "disable-overscroll-history-navigation"; | 
|  807  |  807  | 
|  808 }  // namespace switches |  808 }  // namespace switches | 
| OLD | NEW |