| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 BLINK_EXPORT static void EnableLoadingWithMojo(bool); | 91 BLINK_EXPORT static void EnableLoadingWithMojo(bool); |
| 92 BLINK_EXPORT static void EnableMediaCapture(bool); | 92 BLINK_EXPORT static void EnableMediaCapture(bool); |
| 93 BLINK_EXPORT static void EnableMediaDocumentDownloadButton(bool); | 93 BLINK_EXPORT static void EnableMediaDocumentDownloadButton(bool); |
| 94 BLINK_EXPORT static void EnableMediaSession(bool); | 94 BLINK_EXPORT static void EnableMediaSession(bool); |
| 95 BLINK_EXPORT static void EnableMiddleClickAutoscroll(bool); | 95 BLINK_EXPORT static void EnableMiddleClickAutoscroll(bool); |
| 96 BLINK_EXPORT static void EnableNavigatorContentUtils(bool); | 96 BLINK_EXPORT static void EnableNavigatorContentUtils(bool); |
| 97 BLINK_EXPORT static void EnableNetworkInformation(bool); | 97 BLINK_EXPORT static void EnableNetworkInformation(bool); |
| 98 BLINK_EXPORT static void EnableNotificationConstructor(bool); | 98 BLINK_EXPORT static void EnableNotificationConstructor(bool); |
| 99 BLINK_EXPORT static void EnableNotificationContentImage(bool); | 99 BLINK_EXPORT static void EnableNotificationContentImage(bool); |
| 100 BLINK_EXPORT static void EnableNotifications(bool); | 100 BLINK_EXPORT static void EnableNotifications(bool); |
| 101 BLINK_EXPORT static void EnableOffMainThreadFetch(bool); |
| 101 BLINK_EXPORT static void EnableOnDeviceChange(bool); | 102 BLINK_EXPORT static void EnableOnDeviceChange(bool); |
| 102 BLINK_EXPORT static void EnableOrientationEvent(bool); | 103 BLINK_EXPORT static void EnableOrientationEvent(bool); |
| 103 BLINK_EXPORT static void EnableOverlayScrollbars(bool); | 104 BLINK_EXPORT static void EnableOverlayScrollbars(bool); |
| 104 BLINK_EXPORT static void EnablePagePopup(bool); | 105 BLINK_EXPORT static void EnablePagePopup(bool); |
| 105 BLINK_EXPORT static void EnablePassiveDocumentEventListeners(bool); | 106 BLINK_EXPORT static void EnablePassiveDocumentEventListeners(bool); |
| 106 BLINK_EXPORT static void EnablePaymentRequest(bool); | 107 BLINK_EXPORT static void EnablePaymentRequest(bool); |
| 107 BLINK_EXPORT static void EnablePermissionsAPI(bool); | 108 BLINK_EXPORT static void EnablePermissionsAPI(bool); |
| 108 BLINK_EXPORT static void EnablePointerEvent(bool); | 109 BLINK_EXPORT static void EnablePointerEvent(bool); |
| 109 BLINK_EXPORT static void EnablePreciseMemoryInfo(bool); | 110 BLINK_EXPORT static void EnablePreciseMemoryInfo(bool); |
| 110 BLINK_EXPORT static void EnablePrintBrowser(bool); | 111 BLINK_EXPORT static void EnablePrintBrowser(bool); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 BLINK_EXPORT static void EnableVideoFullscreenDetection(bool); | 150 BLINK_EXPORT static void EnableVideoFullscreenDetection(bool); |
| 150 BLINK_EXPORT static void EnableMediaControlsOverlayPlayButton(bool); | 151 BLINK_EXPORT static void EnableMediaControlsOverlayPlayButton(bool); |
| 151 | 152 |
| 152 private: | 153 private: |
| 153 WebRuntimeFeatures(); | 154 WebRuntimeFeatures(); |
| 154 }; | 155 }; |
| 155 | 156 |
| 156 } // namespace blink | 157 } // namespace blink |
| 157 | 158 |
| 158 #endif | 159 #endif |
| OLD | NEW |