| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 void WebRuntimeFeatures::enableXSLT(bool enable) | 272 void WebRuntimeFeatures::enableXSLT(bool enable) |
| 273 { | 273 { |
| 274 RuntimeEnabledFeatures::setXSLTEnabled(enable); | 274 RuntimeEnabledFeatures::setXSLTEnabled(enable); |
| 275 } | 275 } |
| 276 | 276 |
| 277 void WebRuntimeFeatures::enableOverlayScrollbars(bool enable) | 277 void WebRuntimeFeatures::enableOverlayScrollbars(bool enable) |
| 278 { | 278 { |
| 279 RuntimeEnabledFeatures::setOverlayScrollbarsEnabled(enable); | 279 RuntimeEnabledFeatures::setOverlayScrollbarsEnabled(enable); |
| 280 } | 280 } |
| 281 | 281 |
| 282 void WebRuntimeFeatures::enableInputModeAttribute(bool enable) | |
| 283 { | |
| 284 RuntimeEnabledFeatures::setInputModeAttributeEnabled(enable); | |
| 285 } | |
| 286 | |
| 287 void WebRuntimeFeatures::enableOverlayFullscreenVideo(bool enable) | 282 void WebRuntimeFeatures::enableOverlayFullscreenVideo(bool enable) |
| 288 { | 283 { |
| 289 RuntimeEnabledFeatures::setOverlayFullscreenVideoEnabled(enable); | 284 RuntimeEnabledFeatures::setOverlayFullscreenVideoEnabled(enable); |
| 290 } | 285 } |
| 291 | 286 |
| 292 void WebRuntimeFeatures::enableSharedWorker(bool enable) | 287 void WebRuntimeFeatures::enableSharedWorker(bool enable) |
| 293 { | 288 { |
| 294 RuntimeEnabledFeatures::setSharedWorkerEnabled(enable); | 289 RuntimeEnabledFeatures::setSharedWorkerEnabled(enable); |
| 295 } | 290 } |
| 296 | 291 |
| 297 void WebRuntimeFeatures::enableRepaintAfterLayout(bool enable) | 292 void WebRuntimeFeatures::enableRepaintAfterLayout(bool enable) |
| 298 { | 293 { |
| 299 RuntimeEnabledFeatures::setRepaintAfterLayoutEnabled(enable); | 294 RuntimeEnabledFeatures::setRepaintAfterLayoutEnabled(enable); |
| 300 } | 295 } |
| 301 | 296 |
| 302 void WebRuntimeFeatures::enableExperimentalWebSocket(bool enable) | 297 void WebRuntimeFeatures::enableExperimentalWebSocket(bool enable) |
| 303 { | 298 { |
| 304 RuntimeEnabledFeatures::setExperimentalWebSocketEnabled(enable); | 299 RuntimeEnabledFeatures::setExperimentalWebSocketEnabled(enable); |
| 305 } | 300 } |
| 306 | 301 |
| 307 void WebRuntimeFeatures::enableTargetedStyleRecalc(bool enable) | 302 void WebRuntimeFeatures::enableTargetedStyleRecalc(bool enable) |
| 308 { | 303 { |
| 309 RuntimeEnabledFeatures::setTargetedStyleRecalcEnabled(enable); | 304 RuntimeEnabledFeatures::setTargetedStyleRecalcEnabled(enable); |
| 310 } | 305 } |
| 311 | 306 |
| 312 } // namespace blink | 307 } // namespace blink |
| OLD | NEW |