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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 | 57 |
58 WEBKIT_EXPORT static void enableCSSCompositing(bool); | 58 WEBKIT_EXPORT static void enableCSSCompositing(bool); |
59 WEBKIT_EXPORT static bool isCSSCompositingEnabled(); | 59 WEBKIT_EXPORT static bool isCSSCompositingEnabled(); |
60 | 60 |
61 WEBKIT_EXPORT static void enableCSSExclusions(bool); | 61 WEBKIT_EXPORT static void enableCSSExclusions(bool); |
62 WEBKIT_EXPORT static bool isCSSExclusionsEnabled(); | 62 WEBKIT_EXPORT static bool isCSSExclusionsEnabled(); |
63 | 63 |
64 WEBKIT_EXPORT static void enableCSSRegions(bool); | 64 WEBKIT_EXPORT static void enableCSSRegions(bool); |
65 WEBKIT_EXPORT static bool isCSSRegionsEnabled(); | 65 WEBKIT_EXPORT static bool isCSSRegionsEnabled(); |
66 | 66 |
| 67 WEBKIT_EXPORT static void enableCSSTouchAction(bool); |
| 68 WEBKIT_EXPORT static bool isCSSTouchActionEnabled(); |
| 69 |
67 WEBKIT_EXPORT static void enableCustomDOMElements(bool); | 70 WEBKIT_EXPORT static void enableCustomDOMElements(bool); |
68 WEBKIT_EXPORT static bool isCustomDOMElementsEnabled(); | 71 WEBKIT_EXPORT static bool isCustomDOMElementsEnabled(); |
69 | 72 |
70 WEBKIT_EXPORT static void enableDatabase(bool); | 73 WEBKIT_EXPORT static void enableDatabase(bool); |
71 WEBKIT_EXPORT static bool isDatabaseEnabled(); | 74 WEBKIT_EXPORT static bool isDatabaseEnabled(); |
72 | 75 |
73 WEBKIT_EXPORT static void enableDeviceMotion(bool); | 76 WEBKIT_EXPORT static void enableDeviceMotion(bool); |
74 WEBKIT_EXPORT static bool isDeviceMotionEnabled(); | 77 WEBKIT_EXPORT static bool isDeviceMotionEnabled(); |
75 | 78 |
76 WEBKIT_EXPORT static void enableDeviceOrientation(bool); | 79 WEBKIT_EXPORT static void enableDeviceOrientation(bool); |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 WEBKIT_EXPORT static void enableDataListElement(bool); | 199 WEBKIT_EXPORT static void enableDataListElement(bool); |
197 WEBKIT_EXPORT static bool isDataListElementEnabled(); | 200 WEBKIT_EXPORT static bool isDataListElementEnabled(); |
198 | 201 |
199 private: | 202 private: |
200 WebRuntimeFeatures(); | 203 WebRuntimeFeatures(); |
201 }; | 204 }; |
202 | 205 |
203 } // namespace WebKit | 206 } // namespace WebKit |
204 | 207 |
205 #endif | 208 #endif |
OLD | NEW |