OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 100 |
101 BLINK_EXPORT static void enableTouchIconLoading(bool); | 101 BLINK_EXPORT static void enableTouchIconLoading(bool); |
102 | 102 |
103 BLINK_EXPORT static void enableWebAnimationsCSS(bool); | 103 BLINK_EXPORT static void enableWebAnimationsCSS(bool); |
104 BLINK_EXPORT static void enableWebAnimationsSVG(bool); | 104 BLINK_EXPORT static void enableWebAnimationsSVG(bool); |
105 | 105 |
106 BLINK_EXPORT static void enableWebAudio(bool); | 106 BLINK_EXPORT static void enableWebAudio(bool); |
107 | 107 |
108 BLINK_EXPORT static void enableWebGLDraftExtensions(bool); | 108 BLINK_EXPORT static void enableWebGLDraftExtensions(bool); |
109 | 109 |
| 110 BLINK_EXPORT static void enableWebGLImageChromium(bool); |
| 111 |
110 BLINK_EXPORT static void enableWebMIDI(bool); | 112 BLINK_EXPORT static void enableWebMIDI(bool); |
111 | 113 |
112 BLINK_EXPORT static void enableHTMLImports(bool); | 114 BLINK_EXPORT static void enableHTMLImports(bool); |
113 | 115 |
114 BLINK_EXPORT static void enableXSLT(bool); | 116 BLINK_EXPORT static void enableXSLT(bool); |
115 | 117 |
116 BLINK_EXPORT static void enableOverlayScrollbars(bool); | 118 BLINK_EXPORT static void enableOverlayScrollbars(bool); |
117 | 119 |
118 BLINK_EXPORT static void enableOverlayFullscreenVideo(bool); | 120 BLINK_EXPORT static void enableOverlayFullscreenVideo(bool); |
119 | 121 |
120 BLINK_EXPORT static void enableSharedWorker(bool); | 122 BLINK_EXPORT static void enableSharedWorker(bool); |
121 | 123 |
122 BLINK_EXPORT static void enableRepaintAfterLayout(bool); | 124 BLINK_EXPORT static void enableRepaintAfterLayout(bool); |
123 | 125 |
124 BLINK_EXPORT static void enableExperimentalWebSocket(bool); | 126 BLINK_EXPORT static void enableExperimentalWebSocket(bool); |
125 | 127 |
126 BLINK_EXPORT static void enableTargetedStyleRecalc(bool); | 128 BLINK_EXPORT static void enableTargetedStyleRecalc(bool); |
127 | 129 |
128 BLINK_EXPORT static void enablePreciseMemoryInfo(bool); | 130 BLINK_EXPORT static void enablePreciseMemoryInfo(bool); |
129 | 131 |
130 BLINK_EXPORT static void enableLayerSquashing(bool); | 132 BLINK_EXPORT static void enableLayerSquashing(bool); |
131 | 133 |
132 private: | 134 private: |
133 WebRuntimeFeatures(); | 135 WebRuntimeFeatures(); |
134 }; | 136 }; |
135 | 137 |
136 } // namespace blink | 138 } // namespace blink |
137 | 139 |
138 #endif | 140 #endif |
OLD | NEW |