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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 void WebSettingsImpl::setCompositorDrivenAcceleratedScrollingEnabled(bool enable
d) | 463 void WebSettingsImpl::setCompositorDrivenAcceleratedScrollingEnabled(bool enable
d) |
464 { | 464 { |
465 m_settings->setCompositorDrivenAcceleratedScrollingEnabled(enabled); | 465 m_settings->setCompositorDrivenAcceleratedScrollingEnabled(enabled); |
466 } | 466 } |
467 | 467 |
468 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo
l enabled) | 468 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo
l enabled) |
469 { | 469 { |
470 m_settings->setAcceleratedCompositingForFixedRootBackgroundEnabled(enabled); | 470 m_settings->setAcceleratedCompositingForFixedRootBackgroundEnabled(enabled); |
471 } | 471 } |
472 | 472 |
473 void WebSettingsImpl::setAcceleratedCompositingForGpuRasterizationHintEnabled(bo
ol enabled) | |
474 { | |
475 m_settings->setAcceleratedCompositingForGpuRasterizationHintEnabled(enabled)
; | |
476 } | |
477 | |
478 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled) | 473 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled) |
479 { | 474 { |
480 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled); | 475 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled); |
481 } | 476 } |
482 | 477 |
483 void WebSettingsImpl::setAccelerated2dCanvasEnabled(bool enabled) | 478 void WebSettingsImpl::setAccelerated2dCanvasEnabled(bool enabled) |
484 { | 479 { |
485 m_settings->setAccelerated2dCanvasEnabled(enabled); | 480 m_settings->setAccelerated2dCanvasEnabled(enabled); |
486 } | 481 } |
487 | 482 |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
725 { | 720 { |
726 m_settings->setUseThreadedHTMLParserForDataURLs(enabled); | 721 m_settings->setUseThreadedHTMLParserForDataURLs(enabled); |
727 } | 722 } |
728 | 723 |
729 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled) | 724 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled) |
730 { | 725 { |
731 m_mainFrameResizesAreOrientationChanges = enabled; | 726 m_mainFrameResizesAreOrientationChanges = enabled; |
732 } | 727 } |
733 | 728 |
734 } // namespace blink | 729 } // namespace blink |
OLD | NEW |