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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 | 147 |
148 WEBKIT_EXPORT static void enableMediaStream(bool); | 148 WEBKIT_EXPORT static void enableMediaStream(bool); |
149 WEBKIT_EXPORT static bool isMediaStreamEnabled(); | 149 WEBKIT_EXPORT static bool isMediaStreamEnabled(); |
150 | 150 |
151 WEBKIT_EXPORT static void enableNotifications(bool); | 151 WEBKIT_EXPORT static void enableNotifications(bool); |
152 WEBKIT_EXPORT static bool isNotificationsEnabled(); | 152 WEBKIT_EXPORT static bool isNotificationsEnabled(); |
153 | 153 |
154 WEBKIT_EXPORT static void enablePagePopup(bool); | 154 WEBKIT_EXPORT static void enablePagePopup(bool); |
155 WEBKIT_EXPORT static bool isPagePopupEnabled(); | 155 WEBKIT_EXPORT static bool isPagePopupEnabled(); |
156 | 156 |
| 157 WEBKIT_EXPORT static void enableParseSVGAsHTML(bool); |
| 158 WEBKIT_EXPORT static bool isParseSVGAsHTMLEnabled(); |
| 159 |
157 WEBKIT_EXPORT static void enablePeerConnection(bool); | 160 WEBKIT_EXPORT static void enablePeerConnection(bool); |
158 WEBKIT_EXPORT static bool isPeerConnectionEnabled(); | 161 WEBKIT_EXPORT static bool isPeerConnectionEnabled(); |
159 | 162 |
160 WEBKIT_EXPORT static void enableQuota(bool); | 163 WEBKIT_EXPORT static void enableQuota(bool); |
161 WEBKIT_EXPORT static bool isQuotaEnabled(); | 164 WEBKIT_EXPORT static bool isQuotaEnabled(); |
162 | 165 |
163 WEBKIT_EXPORT static void enableRequestAutocomplete(bool); | 166 WEBKIT_EXPORT static void enableRequestAutocomplete(bool); |
164 WEBKIT_EXPORT static bool isRequestAutocompleteEnabled(); | 167 WEBKIT_EXPORT static bool isRequestAutocompleteEnabled(); |
165 | 168 |
166 WEBKIT_EXPORT static void enableScriptedSpeech(bool); | 169 WEBKIT_EXPORT static void enableScriptedSpeech(bool); |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 WEBKIT_EXPORT static void enableDataListElement(bool); | 202 WEBKIT_EXPORT static void enableDataListElement(bool); |
200 WEBKIT_EXPORT static bool isDataListElementEnabled(); | 203 WEBKIT_EXPORT static bool isDataListElementEnabled(); |
201 | 204 |
202 private: | 205 private: |
203 WebRuntimeFeatures(); | 206 WebRuntimeFeatures(); |
204 }; | 207 }; |
205 | 208 |
206 } // namespace WebKit | 209 } // namespace WebKit |
207 | 210 |
208 #endif | 211 #endif |
OLD | NEW |