| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 } | 69 } |
| 70 | 70 |
| 71 void WebRuntimeFeatures::enableCanvas2dImageChromium(bool enable) { | 71 void WebRuntimeFeatures::enableCanvas2dImageChromium(bool enable) { |
| 72 RuntimeEnabledFeatures::setCanvas2dImageChromiumEnabled(enable); | 72 RuntimeEnabledFeatures::setCanvas2dImageChromiumEnabled(enable); |
| 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::enableTrueColorRendering(bool enable) { |
| 80 RuntimeEnabledFeatures::setTrueColorRenderingEnabled(enable); |
| 81 } |
| 82 |
| 79 void WebRuntimeFeatures::enableCompositedSelectionUpdate(bool enable) { | 83 void WebRuntimeFeatures::enableCompositedSelectionUpdate(bool enable) { |
| 80 RuntimeEnabledFeatures::setCompositedSelectionUpdateEnabled(enable); | 84 RuntimeEnabledFeatures::setCompositedSelectionUpdateEnabled(enable); |
| 81 } | 85 } |
| 82 | 86 |
| 83 bool WebRuntimeFeatures::isCompositedSelectionUpdateEnabled() { | 87 bool WebRuntimeFeatures::isCompositedSelectionUpdateEnabled() { |
| 84 return RuntimeEnabledFeatures::compositedSelectionUpdateEnabled(); | 88 return RuntimeEnabledFeatures::compositedSelectionUpdateEnabled(); |
| 85 } | 89 } |
| 86 | 90 |
| 87 void WebRuntimeFeatures::enableDatabase(bool enable) { | 91 void WebRuntimeFeatures::enableDatabase(bool enable) { |
| 88 RuntimeEnabledFeatures::setDatabaseEnabled(enable); | 92 RuntimeEnabledFeatures::setDatabaseEnabled(enable); |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 bool enable) { | 352 bool enable) { |
| 349 RuntimeEnabledFeatures::setSendBeaconThrowForBlobWithNonSimpleTypeEnabled( | 353 RuntimeEnabledFeatures::setSendBeaconThrowForBlobWithNonSimpleTypeEnabled( |
| 350 enable); | 354 enable); |
| 351 } | 355 } |
| 352 | 356 |
| 353 void WebRuntimeFeatures::enableBackgroundVideoTrackOptimization(bool enable) { | 357 void WebRuntimeFeatures::enableBackgroundVideoTrackOptimization(bool enable) { |
| 354 RuntimeEnabledFeatures::setBackgroundVideoTrackOptimizationEnabled(enable); | 358 RuntimeEnabledFeatures::setBackgroundVideoTrackOptimizationEnabled(enable); |
| 355 } | 359 } |
| 356 | 360 |
| 357 } // namespace blink | 361 } // namespace blink |
| OLD | NEW |