OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 WEBKIT_EXPORT static void enableScriptedSpeech(bool); | 83 WEBKIT_EXPORT static void enableScriptedSpeech(bool); |
84 WEBKIT_EXPORT static bool isScriptedSpeechEnabled(); | 84 WEBKIT_EXPORT static bool isScriptedSpeechEnabled(); |
85 | 85 |
86 WEBKIT_EXPORT static void enableXHRResponseBlob(bool); | 86 WEBKIT_EXPORT static void enableXHRResponseBlob(bool); |
87 WEBKIT_EXPORT static bool isXHRResponseBlobEnabled(); | 87 WEBKIT_EXPORT static bool isXHRResponseBlobEnabled(); |
88 | 88 |
89 WEBKIT_EXPORT static void enableFileSystem(bool); | 89 WEBKIT_EXPORT static void enableFileSystem(bool); |
90 WEBKIT_EXPORT static bool isFileSystemEnabled(); | 90 WEBKIT_EXPORT static bool isFileSystemEnabled(); |
91 | 91 |
92 WEBKIT_EXPORT static void enableJavaScriptI18NAPI(bool); | |
93 WEBKIT_EXPORT static bool isJavaScriptI18NAPIEnabled(); | |
94 | |
95 WEBKIT_EXPORT static void enableQuota(bool); | 92 WEBKIT_EXPORT static void enableQuota(bool); |
96 WEBKIT_EXPORT static bool isQuotaEnabled(); | 93 WEBKIT_EXPORT static bool isQuotaEnabled(); |
97 | 94 |
98 WEBKIT_EXPORT static void enableMediaStream(bool); | 95 WEBKIT_EXPORT static void enableMediaStream(bool); |
99 WEBKIT_EXPORT static bool isMediaStreamEnabled(); | 96 WEBKIT_EXPORT static bool isMediaStreamEnabled(); |
100 | 97 |
101 WEBKIT_EXPORT static void enablePeerConnection(bool); | 98 WEBKIT_EXPORT static void enablePeerConnection(bool); |
102 WEBKIT_EXPORT static bool isPeerConnectionEnabled(); | 99 WEBKIT_EXPORT static bool isPeerConnectionEnabled(); |
103 | 100 |
104 WEBKIT_EXPORT static void enableFullScreenAPI(bool); | 101 WEBKIT_EXPORT static void enableFullScreenAPI(bool); |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 WEBKIT_EXPORT static void enableWebMIDI(bool); | 170 WEBKIT_EXPORT static void enableWebMIDI(bool); |
174 WEBKIT_EXPORT static bool isWebMIDIEnabled(); | 171 WEBKIT_EXPORT static bool isWebMIDIEnabled(); |
175 | 172 |
176 private: | 173 private: |
177 WebRuntimeFeatures(); | 174 WebRuntimeFeatures(); |
178 }; | 175 }; |
179 | 176 |
180 } // namespace WebKit | 177 } // namespace WebKit |
181 | 178 |
182 #endif | 179 #endif |
OLD | NEW |