| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 BLINK_EXPORT static void enableDialogElement(bool); | 60 BLINK_EXPORT static void enableDialogElement(bool); |
| 61 BLINK_EXPORT static bool isDialogElementEnabled(); | 61 BLINK_EXPORT static bool isDialogElementEnabled(); |
| 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 enableDirectWrite(bool); |
| 70 BLINK_EXPORT static bool isDirectWriteEnabled(); |
| 71 |
| 69 BLINK_EXPORT static void enableExperimentalCanvasFeatures(bool); | 72 BLINK_EXPORT static void enableExperimentalCanvasFeatures(bool); |
| 70 BLINK_EXPORT static bool isExperimentalCanvasFeaturesEnabled(); | 73 BLINK_EXPORT static bool isExperimentalCanvasFeaturesEnabled(); |
| 71 | 74 |
| 72 BLINK_EXPORT static void enableFastTextAutosizing(bool); | 75 BLINK_EXPORT static void enableFastTextAutosizing(bool); |
| 73 BLINK_EXPORT static bool isFastTextAutosizingEnabled(); | 76 BLINK_EXPORT static bool isFastTextAutosizingEnabled(); |
| 74 | 77 |
| 75 BLINK_EXPORT static void enableFileSystem(bool); | 78 BLINK_EXPORT static void enableFileSystem(bool); |
| 76 BLINK_EXPORT static bool isFileSystemEnabled(); | 79 BLINK_EXPORT static bool isFileSystemEnabled(); |
| 77 | 80 |
| 78 BLINK_EXPORT static void enableFullscreen(bool); | 81 BLINK_EXPORT static void enableFullscreen(bool); |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 | 166 |
| 164 BLINK_EXPORT static void enableRepaintAfterLayout(bool); | 167 BLINK_EXPORT static void enableRepaintAfterLayout(bool); |
| 165 | 168 |
| 166 private: | 169 private: |
| 167 WebRuntimeFeatures(); | 170 WebRuntimeFeatures(); |
| 168 }; | 171 }; |
| 169 | 172 |
| 170 } // namespace blink | 173 } // namespace blink |
| 171 | 174 |
| 172 #endif | 175 #endif |
| OLD | NEW |