| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 126 |
| 127 BLINK_EXPORT static void enableSpeechInput(bool); | 127 BLINK_EXPORT static void enableSpeechInput(bool); |
| 128 BLINK_EXPORT static bool isSpeechInputEnabled(); | 128 BLINK_EXPORT static bool isSpeechInputEnabled(); |
| 129 | 129 |
| 130 BLINK_EXPORT static void enableSpeechSynthesis(bool); | 130 BLINK_EXPORT static void enableSpeechSynthesis(bool); |
| 131 BLINK_EXPORT static bool isSpeechSynthesisEnabled(); | 131 BLINK_EXPORT static bool isSpeechSynthesisEnabled(); |
| 132 | 132 |
| 133 BLINK_EXPORT static void enableTouch(bool); | 133 BLINK_EXPORT static void enableTouch(bool); |
| 134 BLINK_EXPORT static bool isTouchEnabled(); | 134 BLINK_EXPORT static bool isTouchEnabled(); |
| 135 | 135 |
| 136 BLINK_EXPORT static void enablePointerEventsMaxTouchPoints(bool); |
| 137 BLINK_EXPORT static bool isPointerEventsMaxTouchPointsEnabled(); |
| 138 |
| 136 BLINK_EXPORT static void enableWebAnimationsCSS(); | 139 BLINK_EXPORT static void enableWebAnimationsCSS(); |
| 137 BLINK_EXPORT static void enableWebAnimationsSVG(); | 140 BLINK_EXPORT static void enableWebAnimationsSVG(); |
| 138 | 141 |
| 139 BLINK_EXPORT static void enableWebAudio(bool); | 142 BLINK_EXPORT static void enableWebAudio(bool); |
| 140 BLINK_EXPORT static bool isWebAudioEnabled(); | 143 BLINK_EXPORT static bool isWebAudioEnabled(); |
| 141 | 144 |
| 142 BLINK_EXPORT static void enableWebGLDraftExtensions(bool); | 145 BLINK_EXPORT static void enableWebGLDraftExtensions(bool); |
| 143 BLINK_EXPORT static bool isWebGLDraftExtensionsEnabled(); | 146 BLINK_EXPORT static bool isWebGLDraftExtensionsEnabled(); |
| 144 | 147 |
| 145 BLINK_EXPORT static void enableWebMIDI(bool); | 148 BLINK_EXPORT static void enableWebMIDI(bool); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 161 | 164 |
| 162 BLINK_EXPORT static void enableOverlayFullscreenVideo(bool); | 165 BLINK_EXPORT static void enableOverlayFullscreenVideo(bool); |
| 163 | 166 |
| 164 private: | 167 private: |
| 165 WebRuntimeFeatures(); | 168 WebRuntimeFeatures(); |
| 166 }; | 169 }; |
| 167 | 170 |
| 168 } // namespace WebKit | 171 } // namespace WebKit |
| 169 | 172 |
| 170 #endif | 173 #endif |
| OLD | NEW |