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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
476 void WebSettingsImpl::setCompositorDrivenAcceleratedScrollingEnabled(bool enable
d) | 476 void WebSettingsImpl::setCompositorDrivenAcceleratedScrollingEnabled(bool enable
d) |
477 { | 477 { |
478 m_settings->setCompositorDrivenAcceleratedScrollingEnabled(enabled); | 478 m_settings->setCompositorDrivenAcceleratedScrollingEnabled(enabled); |
479 } | 479 } |
480 | 480 |
481 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo
l enabled) | 481 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo
l enabled) |
482 { | 482 { |
483 m_settings->setAcceleratedCompositingForFixedRootBackgroundEnabled(enabled); | 483 m_settings->setAcceleratedCompositingForFixedRootBackgroundEnabled(enabled); |
484 } | 484 } |
485 | 485 |
| 486 void WebSettingsImpl::setAcceleratedCompositingForGpuRasterizationHintEnabled(bo
ol enabled) |
| 487 { |
| 488 m_settings->setAcceleratedCompositingForGpuRasterizationHintEnabled(enabled)
; |
| 489 } |
| 490 |
486 void WebSettingsImpl::setAcceleratedCompositingForPluginsEnabled(bool enabled) | 491 void WebSettingsImpl::setAcceleratedCompositingForPluginsEnabled(bool enabled) |
487 { | 492 { |
488 m_settings->setAcceleratedCompositingForPluginsEnabled(enabled); | 493 m_settings->setAcceleratedCompositingForPluginsEnabled(enabled); |
489 } | 494 } |
490 | 495 |
491 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled) | 496 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled) |
492 { | 497 { |
493 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled); | 498 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled); |
494 } | 499 } |
495 | 500 |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 { | 763 { |
759 m_settings->setUseSolidColorScrollbars(enabled); | 764 m_settings->setUseSolidColorScrollbars(enabled); |
760 } | 765 } |
761 | 766 |
762 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled) | 767 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled) |
763 { | 768 { |
764 m_mainFrameResizesAreOrientationChanges = enabled; | 769 m_mainFrameResizesAreOrientationChanges = enabled; |
765 } | 770 } |
766 | 771 |
767 } // namespace blink | 772 } // namespace blink |
OLD | NEW |