| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 } | 73 } |
| 74 | 74 |
| 75 void WebRuntimeFeatures::enableColorCorrectRendering(bool enable) { | 75 void WebRuntimeFeatures::enableColorCorrectRendering(bool enable) { |
| 76 RuntimeEnabledFeatures::setColorCorrectRenderingEnabled(enable); | 76 RuntimeEnabledFeatures::setColorCorrectRenderingEnabled(enable); |
| 77 } | 77 } |
| 78 | 78 |
| 79 void WebRuntimeFeatures::enableColorCorrectRenderingDefaultMode(bool enable) { | 79 void WebRuntimeFeatures::enableColorCorrectRenderingDefaultMode(bool enable) { |
| 80 RuntimeEnabledFeatures::setColorCorrectRenderingDefaultModeEnabled(enable); | 80 RuntimeEnabledFeatures::setColorCorrectRenderingDefaultModeEnabled(enable); |
| 81 } | 81 } |
| 82 | 82 |
| 83 void WebRuntimeFeatures::enableTrueColorRendering(bool enable) { | |
| 84 RuntimeEnabledFeatures::setTrueColorRenderingEnabled(enable); | |
| 85 } | |
| 86 | |
| 87 void WebRuntimeFeatures::enableCompositedSelectionUpdate(bool enable) { | 83 void WebRuntimeFeatures::enableCompositedSelectionUpdate(bool enable) { |
| 88 RuntimeEnabledFeatures::setCompositedSelectionUpdateEnabled(enable); | 84 RuntimeEnabledFeatures::setCompositedSelectionUpdateEnabled(enable); |
| 89 } | 85 } |
| 90 | 86 |
| 91 bool WebRuntimeFeatures::isCompositedSelectionUpdateEnabled() { | 87 bool WebRuntimeFeatures::isCompositedSelectionUpdateEnabled() { |
| 92 return RuntimeEnabledFeatures::compositedSelectionUpdateEnabled(); | 88 return RuntimeEnabledFeatures::compositedSelectionUpdateEnabled(); |
| 93 } | 89 } |
| 94 | 90 |
| 95 void WebRuntimeFeatures::enableDatabase(bool enable) { | 91 void WebRuntimeFeatures::enableDatabase(bool enable) { |
| 96 RuntimeEnabledFeatures::setDatabaseEnabled(enable); | 92 RuntimeEnabledFeatures::setDatabaseEnabled(enable); |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 | 386 |
| 391 void WebRuntimeFeatures::enableVideoFullscreenOrientationLock(bool enable) { | 387 void WebRuntimeFeatures::enableVideoFullscreenOrientationLock(bool enable) { |
| 392 RuntimeEnabledFeatures::setVideoFullscreenOrientationLockEnabled(enable); | 388 RuntimeEnabledFeatures::setVideoFullscreenOrientationLockEnabled(enable); |
| 393 } | 389 } |
| 394 | 390 |
| 395 void WebRuntimeFeatures::enableMediaControlsOverlayPlayButton(bool enable) { | 391 void WebRuntimeFeatures::enableMediaControlsOverlayPlayButton(bool enable) { |
| 396 RuntimeEnabledFeatures::setMediaControlsOverlayPlayButtonEnabled(enable); | 392 RuntimeEnabledFeatures::setMediaControlsOverlayPlayButtonEnabled(enable); |
| 397 } | 393 } |
| 398 | 394 |
| 399 } // namespace blink | 395 } // namespace blink |
| OLD | NEW |