| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 BLINK_EXPORT static void enableEncryptedMedia(bool); | 63 BLINK_EXPORT static void enableEncryptedMedia(bool); |
| 64 BLINK_EXPORT static bool isEncryptedMediaEnabled(); | 64 BLINK_EXPORT static bool isEncryptedMediaEnabled(); |
| 65 | 65 |
| 66 BLINK_EXPORT static void enablePrefixedEncryptedMedia(bool); | 66 BLINK_EXPORT static void enablePrefixedEncryptedMedia(bool); |
| 67 BLINK_EXPORT static bool isPrefixedEncryptedMediaEnabled(); | 67 BLINK_EXPORT static bool isPrefixedEncryptedMediaEnabled(); |
| 68 | 68 |
| 69 BLINK_EXPORT static void enableExperimentalCanvasFeatures(bool); | 69 BLINK_EXPORT static void enableExperimentalCanvasFeatures(bool); |
| 70 BLINK_EXPORT static bool isExperimentalCanvasFeaturesEnabled(); | 70 BLINK_EXPORT static bool isExperimentalCanvasFeaturesEnabled(); |
| 71 | 71 |
| 72 BLINK_EXPORT static void enableFastTextAutosizing(bool); |
| 73 BLINK_EXPORT static bool isFastTextAutosizingEnabled(); |
| 74 |
| 72 BLINK_EXPORT static void enableFileSystem(bool); | 75 BLINK_EXPORT static void enableFileSystem(bool); |
| 73 BLINK_EXPORT static bool isFileSystemEnabled(); | 76 BLINK_EXPORT static bool isFileSystemEnabled(); |
| 74 | 77 |
| 75 BLINK_EXPORT static void enableFullscreen(bool); | 78 BLINK_EXPORT static void enableFullscreen(bool); |
| 76 BLINK_EXPORT static bool isFullscreenEnabled(); | 79 BLINK_EXPORT static bool isFullscreenEnabled(); |
| 77 | 80 |
| 78 BLINK_EXPORT static void enableGamepad(bool); | 81 BLINK_EXPORT static void enableGamepad(bool); |
| 79 BLINK_EXPORT static bool isGamepadEnabled(); | 82 BLINK_EXPORT static bool isGamepadEnabled(); |
| 80 | 83 |
| 81 BLINK_EXPORT static void enableGeolocation(bool); | 84 BLINK_EXPORT static void enableGeolocation(bool); |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 153 |
| 151 BLINK_EXPORT static void enableOverlayFullscreenVideo(bool); | 154 BLINK_EXPORT static void enableOverlayFullscreenVideo(bool); |
| 152 | 155 |
| 153 private: | 156 private: |
| 154 WebRuntimeFeatures(); | 157 WebRuntimeFeatures(); |
| 155 }; | 158 }; |
| 156 | 159 |
| 157 } // namespace WebKit | 160 } // namespace WebKit |
| 158 | 161 |
| 159 #endif | 162 #endif |
| OLD | NEW |