| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 BLINK_EXPORT static void enableCompositedSelectionUpdate(bool); | 64 BLINK_EXPORT static void enableCompositedSelectionUpdate(bool); |
| 65 BLINK_EXPORT static bool isCompositedSelectionUpdateEnabled(); | 65 BLINK_EXPORT static bool isCompositedSelectionUpdateEnabled(); |
| 66 | 66 |
| 67 BLINK_EXPORT static void enableDecodeToYUV(bool); | 67 BLINK_EXPORT static void enableDecodeToYUV(bool); |
| 68 | 68 |
| 69 BLINK_EXPORT static void enableDisplayList2dCanvas(bool); | 69 BLINK_EXPORT static void enableDisplayList2dCanvas(bool); |
| 70 BLINK_EXPORT static void forceDisplayList2dCanvas(bool); | 70 BLINK_EXPORT static void forceDisplayList2dCanvas(bool); |
| 71 BLINK_EXPORT static void forceDisable2dCanvasCopyOnWrite(bool); | 71 BLINK_EXPORT static void forceDisable2dCanvasCopyOnWrite(bool); |
| 72 | 72 |
| 73 BLINK_EXPORT static void enableEncryptedMedia(bool); | 73 BLINK_EXPORT static void enableCompositorAnimationTimelines(bool); |
| 74 BLINK_EXPORT static bool isEncryptedMediaEnabled(); | |
| 75 | 74 |
| 76 BLINK_EXPORT static void enableExperimentalCanvasFeatures(bool); | 75 BLINK_EXPORT static void enableExperimentalCanvasFeatures(bool); |
| 77 | 76 |
| 78 BLINK_EXPORT static void enableExperimentalFramework(bool); | 77 BLINK_EXPORT static void enableExperimentalFramework(bool); |
| 79 BLINK_EXPORT static bool isExperimentalFrameworkEnabled(); | 78 BLINK_EXPORT static bool isExperimentalFrameworkEnabled(); |
| 80 | 79 |
| 81 BLINK_EXPORT static void enableFastMobileScrolling(bool); | 80 BLINK_EXPORT static void enableFastMobileScrolling(bool); |
| 82 | 81 |
| 83 BLINK_EXPORT static void enableFileSystem(bool); | 82 BLINK_EXPORT static void enableFileSystem(bool); |
| 84 | 83 |
| 85 BLINK_EXPORT static void enableImageColorProfiles(bool); | 84 BLINK_EXPORT static void enableImageColorProfiles(bool); |
| 86 | 85 |
| 87 BLINK_EXPORT static void enableSubpixelFontScaling(bool); | 86 BLINK_EXPORT static void enableSubpixelFontScaling(bool); |
| 88 | 87 |
| 89 BLINK_EXPORT static void enableMediaCapture(bool); | 88 BLINK_EXPORT static void enableMediaCapture(bool); |
| 90 | 89 |
| 91 BLINK_EXPORT static void enableMediaRecorder(bool); | 90 BLINK_EXPORT static void enableMediaRecorder(bool); |
| 92 | 91 |
| 93 BLINK_EXPORT static void enableMediaSource(bool); | |
| 94 | |
| 95 BLINK_EXPORT static void enableNotificationActionIcons(bool); | 92 BLINK_EXPORT static void enableNotificationActionIcons(bool); |
| 96 | 93 |
| 97 BLINK_EXPORT static void enableNotificationConstructor(bool); | 94 BLINK_EXPORT static void enableNotificationConstructor(bool); |
| 98 | 95 |
| 99 BLINK_EXPORT static void enableNotifications(bool); | 96 BLINK_EXPORT static void enableNotifications(bool); |
| 100 | 97 |
| 101 BLINK_EXPORT static void enableNavigatorContentUtils(bool); | 98 BLINK_EXPORT static void enableNavigatorContentUtils(bool); |
| 102 | 99 |
| 103 BLINK_EXPORT static void enableNetworkInformation(bool); | 100 BLINK_EXPORT static void enableNetworkInformation(bool); |
| 104 | 101 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 // (crbug.com/543198). | 163 // (crbug.com/543198). |
| 167 BLINK_EXPORT static bool isServiceWorkerExtendableMessageEventEnabled(); | 164 BLINK_EXPORT static bool isServiceWorkerExtendableMessageEventEnabled(); |
| 168 | 165 |
| 169 private: | 166 private: |
| 170 WebRuntimeFeatures(); | 167 WebRuntimeFeatures(); |
| 171 }; | 168 }; |
| 172 | 169 |
| 173 } // namespace blink | 170 } // namespace blink |
| 174 | 171 |
| 175 #endif | 172 #endif |
| OLD | NEW |