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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 BLINK_EXPORT static void enableExperimentalCanvasFeatures(bool); | 59 BLINK_EXPORT static void enableExperimentalCanvasFeatures(bool); |
60 | 60 |
61 BLINK_EXPORT static void enableFastMobileScrolling(bool); | 61 BLINK_EXPORT static void enableFastMobileScrolling(bool); |
62 | 62 |
63 BLINK_EXPORT static void enableFastTextAutosizing(bool); | 63 BLINK_EXPORT static void enableFastTextAutosizing(bool); |
64 | 64 |
65 BLINK_EXPORT static void enableFileSystem(bool); | 65 BLINK_EXPORT static void enableFileSystem(bool); |
66 | 66 |
67 BLINK_EXPORT static void enableGamepad(bool); | 67 BLINK_EXPORT static void enableGamepad(bool); |
68 | 68 |
69 BLINK_EXPORT static void enableLazyLayout(bool); | |
70 | |
71 BLINK_EXPORT static void enableLocalStorage(bool); | 69 BLINK_EXPORT static void enableLocalStorage(bool); |
72 | 70 |
73 BLINK_EXPORT static void enableMediaPlayer(bool); | 71 BLINK_EXPORT static void enableMediaPlayer(bool); |
74 | 72 |
75 BLINK_EXPORT static void enableSubpixelFontScaling(bool); | 73 BLINK_EXPORT static void enableSubpixelFontScaling(bool); |
76 | 74 |
77 BLINK_EXPORT static void enableMediaSource(bool); | 75 BLINK_EXPORT static void enableMediaSource(bool); |
78 | 76 |
79 BLINK_EXPORT static void enableMediaStream(bool); | 77 BLINK_EXPORT static void enableMediaStream(bool); |
80 | 78 |
(...skipping 14 matching lines...) Expand all Loading... |
95 BLINK_EXPORT static void enableServiceWorker(bool); | 93 BLINK_EXPORT static void enableServiceWorker(bool); |
96 | 94 |
97 BLINK_EXPORT static void enableSessionStorage(bool); | 95 BLINK_EXPORT static void enableSessionStorage(bool); |
98 | 96 |
99 BLINK_EXPORT static void enableSpeechSynthesis(bool); | 97 BLINK_EXPORT static void enableSpeechSynthesis(bool); |
100 | 98 |
101 BLINK_EXPORT static void enableTouch(bool); | 99 BLINK_EXPORT static void enableTouch(bool); |
102 | 100 |
103 BLINK_EXPORT static void enableTouchIconLoading(bool); | 101 BLINK_EXPORT static void enableTouchIconLoading(bool); |
104 | 102 |
105 BLINK_EXPORT static void enableWebAnimationsCSS(bool); | |
106 BLINK_EXPORT static void enableWebAnimationsSVG(bool); | 103 BLINK_EXPORT static void enableWebAnimationsSVG(bool); |
107 | 104 |
108 BLINK_EXPORT static void enableWebAudio(bool); | 105 BLINK_EXPORT static void enableWebAudio(bool); |
109 | 106 |
110 BLINK_EXPORT static void enableWebGLDraftExtensions(bool); | 107 BLINK_EXPORT static void enableWebGLDraftExtensions(bool); |
111 | 108 |
112 BLINK_EXPORT static void enableWebGLImageChromium(bool); | 109 BLINK_EXPORT static void enableWebGLImageChromium(bool); |
113 | 110 |
114 BLINK_EXPORT static void enableWebMIDI(bool); | 111 BLINK_EXPORT static void enableWebMIDI(bool); |
115 | 112 |
(...skipping 17 matching lines...) Expand all Loading... |
133 | 130 |
134 BLINK_EXPORT static void enableLayerSquashing(bool); | 131 BLINK_EXPORT static void enableLayerSquashing(bool); |
135 | 132 |
136 private: | 133 private: |
137 WebRuntimeFeatures(); | 134 WebRuntimeFeatures(); |
138 }; | 135 }; |
139 | 136 |
140 } // namespace blink | 137 } // namespace blink |
141 | 138 |
142 #endif | 139 #endif |
OLD | NEW |