| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 | 152 |
| 153 WEBKIT_EXPORT static void enableInputTypeWeek(bool); | 153 WEBKIT_EXPORT static void enableInputTypeWeek(bool); |
| 154 WEBKIT_EXPORT static bool isInputTypeWeekEnabled(); | 154 WEBKIT_EXPORT static bool isInputTypeWeekEnabled(); |
| 155 | 155 |
| 156 WEBKIT_EXPORT static void enableDialogElement(bool); | 156 WEBKIT_EXPORT static void enableDialogElement(bool); |
| 157 WEBKIT_EXPORT static bool isDialogElementEnabled(); | 157 WEBKIT_EXPORT static bool isDialogElementEnabled(); |
| 158 | 158 |
| 159 WEBKIT_EXPORT static void enableCSSExclusions(bool); | 159 WEBKIT_EXPORT static void enableCSSExclusions(bool); |
| 160 WEBKIT_EXPORT static bool isCSSExclusionsEnabled(); | 160 WEBKIT_EXPORT static bool isCSSExclusionsEnabled(); |
| 161 | 161 |
| 162 |
| 163 WEBKIT_EXPORT static void enableWebIntents(bool); |
| 164 WEBKIT_EXPORT static bool isWebIntentsEnabled(); |
| 165 |
| 162 private: | 166 private: |
| 163 WebRuntimeFeatures(); | 167 WebRuntimeFeatures(); |
| 164 }; | 168 }; |
| 165 | 169 |
| 166 } // namespace WebKit | 170 } // namespace WebKit |
| 167 | 171 |
| 168 #endif | 172 #endif |
| OLD | NEW |