| 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 void WebSettingsImpl::setAcceleratedCompositingFor3DTransformsEnabled(bool enabl
ed) | 464 void WebSettingsImpl::setAcceleratedCompositingFor3DTransformsEnabled(bool enabl
ed) |
| 465 { | 465 { |
| 466 m_settings->setAcceleratedCompositingFor3DTransformsEnabled(enabled); | 466 m_settings->setAcceleratedCompositingFor3DTransformsEnabled(enabled); |
| 467 } | 467 } |
| 468 | 468 |
| 469 void WebSettingsImpl::setAcceleratedCompositingForVideoEnabled(bool enabled) | 469 void WebSettingsImpl::setAcceleratedCompositingForVideoEnabled(bool enabled) |
| 470 { | 470 { |
| 471 m_settings->setAcceleratedCompositingForVideoEnabled(enabled); | 471 m_settings->setAcceleratedCompositingForVideoEnabled(enabled); |
| 472 } | 472 } |
| 473 | 473 |
| 474 void WebSettingsImpl::setAcceleratedCompositingForOverflowScrollEnabled( | 474 void WebSettingsImpl::setAcceleratedCompositingForOverflowScrollEnabled(bool ena
bled) |
| 475 bool enabled) | |
| 476 { | 475 { |
| 477 m_settings->setAcceleratedCompositingForOverflowScrollEnabled(enabled); | 476 m_settings->setAcceleratedCompositingForOverflowScrollEnabled(enabled); |
| 478 } | 477 } |
| 479 | 478 |
| 479 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo
l enabled) |
| 480 { |
| 481 m_settings->setAcceleratedCompositingForFixedRootBackgroundEnabled(enabled); |
| 482 } |
| 483 |
| 480 void WebSettingsImpl::setAcceleratedCompositingForPluginsEnabled(bool enabled) | 484 void WebSettingsImpl::setAcceleratedCompositingForPluginsEnabled(bool enabled) |
| 481 { | 485 { |
| 482 m_settings->setAcceleratedCompositingForPluginsEnabled(enabled); | 486 m_settings->setAcceleratedCompositingForPluginsEnabled(enabled); |
| 483 } | 487 } |
| 484 | 488 |
| 485 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled) | 489 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled) |
| 486 { | 490 { |
| 487 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled); | 491 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled); |
| 488 } | 492 } |
| 489 | 493 |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 { | 739 { |
| 736 m_settings->setSelectionIncludesAltImageText(enabled); | 740 m_settings->setSelectionIncludesAltImageText(enabled); |
| 737 } | 741 } |
| 738 | 742 |
| 739 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) | 743 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) |
| 740 { | 744 { |
| 741 m_settings->setSmartInsertDeleteEnabled(enabled); | 745 m_settings->setSmartInsertDeleteEnabled(enabled); |
| 742 } | 746 } |
| 743 | 747 |
| 744 } // namespace WebKit | 748 } // namespace WebKit |
| OLD | NEW |