| 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 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 // Enables WebGL extensions not yet approved by the community. | 901 // Enables WebGL extensions not yet approved by the community. |
| 902 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; | 902 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
| 903 | 903 |
| 904 // Enables/disables accelerated compositing for backgrounds of root layers with | 904 // Enables/disables accelerated compositing for backgrounds of root layers with |
| 905 // background-attachment: fixed. Requires kForceCompositingMode. | 905 // background-attachment: fixed. Requires kForceCompositingMode. |
| 906 const char kDisableAcceleratedFixedRootBackground[] = | 906 const char kDisableAcceleratedFixedRootBackground[] = |
| 907 "disable-accelerated-fixed-root-background"; | 907 "disable-accelerated-fixed-root-background"; |
| 908 const char kEnableAcceleratedFixedRootBackground[] = | 908 const char kEnableAcceleratedFixedRootBackground[] = |
| 909 "enable-accelerated-fixed-root-background"; | 909 "enable-accelerated-fixed-root-background"; |
| 910 | 910 |
| 911 // Allows filters (SkImageFilter objects) to be sent between processes over IPC |
| 912 const char kAllowFiltersOverIPC[] = "allow-filters-over-ipc"; |
| 913 |
| 911 } // namespace switches | 914 } // namespace switches |
| OLD | NEW |