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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 // Defaults to enabled. | 850 // Defaults to enabled. |
851 const char kOverscrollHistoryNavigation[] = | 851 const char kOverscrollHistoryNavigation[] = |
852 "overscroll-history-navigation"; | 852 "overscroll-history-navigation"; |
853 | 853 |
854 // Forward overscroll event data from the renderer to the browser. | 854 // Forward overscroll event data from the renderer to the browser. |
855 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; | 855 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; |
856 | 856 |
857 // Enables 'image/webp' accept header for image requests. | 857 // Enables 'image/webp' accept header for image requests. |
858 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header"; | 858 const char kEnableWebPInAcceptHeader[] = "enable-webp-in-accept-header"; |
859 | 859 |
| 860 // Enables WebGL extensions not yet approved by the community. |
| 861 const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; |
| 862 |
860 } // namespace switches | 863 } // namespace switches |
OLD | NEW |