| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 void WebRuntimeFeatures::enableXSLT(bool enable) | 252 void WebRuntimeFeatures::enableXSLT(bool enable) |
| 253 { | 253 { |
| 254 RuntimeEnabledFeatures::setXSLTEnabled(enable); | 254 RuntimeEnabledFeatures::setXSLTEnabled(enable); |
| 255 } | 255 } |
| 256 | 256 |
| 257 void WebRuntimeFeatures::enableOverlayScrollbars(bool enable) | 257 void WebRuntimeFeatures::enableOverlayScrollbars(bool enable) |
| 258 { | 258 { |
| 259 RuntimeEnabledFeatures::setOverlayScrollbarsEnabled(enable); | 259 RuntimeEnabledFeatures::setOverlayScrollbarsEnabled(enable); |
| 260 } | 260 } |
| 261 | 261 |
| 262 void WebRuntimeFeatures::enableOverlayFullscreenVideo(bool enable) | |
| 263 { | |
| 264 RuntimeEnabledFeatures::setOverlayFullscreenVideoEnabled(enable); | |
| 265 } | |
| 266 | |
| 267 void WebRuntimeFeatures::forceOverlayFullscreenVideo(bool enable) | 262 void WebRuntimeFeatures::forceOverlayFullscreenVideo(bool enable) |
| 268 { | 263 { |
| 269 RuntimeEnabledFeatures::setForceOverlayFullscreenVideoEnabled(enable); | 264 RuntimeEnabledFeatures::setForceOverlayFullscreenVideoEnabled(enable); |
| 270 } | 265 } |
| 271 | 266 |
| 272 void WebRuntimeFeatures::enableSharedWorker(bool enable) | 267 void WebRuntimeFeatures::enableSharedWorker(bool enable) |
| 273 { | 268 { |
| 274 RuntimeEnabledFeatures::setSharedWorkerEnabled(enable); | 269 RuntimeEnabledFeatures::setSharedWorkerEnabled(enable); |
| 275 } | 270 } |
| 276 | 271 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 { | 328 { |
| 334 RuntimeEnabledFeatures::setNewMediaPlaybackUiEnabled(enable); | 329 RuntimeEnabledFeatures::setNewMediaPlaybackUiEnabled(enable); |
| 335 } | 330 } |
| 336 | 331 |
| 337 void WebRuntimeFeatures::enablePresentationAPI(bool enable) | 332 void WebRuntimeFeatures::enablePresentationAPI(bool enable) |
| 338 { | 333 { |
| 339 RuntimeEnabledFeatures::setPresentationEnabled(enable); | 334 RuntimeEnabledFeatures::setPresentationEnabled(enable); |
| 340 } | 335 } |
| 341 | 336 |
| 342 } // namespace blink | 337 } // namespace blink |
| OLD | NEW |