| 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 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 void WebSettingsImpl::setPerTilePaintingEnabled(bool enabled) | 594 void WebSettingsImpl::setPerTilePaintingEnabled(bool enabled) |
| 595 { | 595 { |
| 596 m_perTilePaintingEnabled = enabled; | 596 m_perTilePaintingEnabled = enabled; |
| 597 } | 597 } |
| 598 | 598 |
| 599 void WebSettingsImpl::setShouldPrintBackgrounds(bool enabled) | 599 void WebSettingsImpl::setShouldPrintBackgrounds(bool enabled) |
| 600 { | 600 { |
| 601 m_settings->setShouldPrintBackgrounds(enabled); | 601 m_settings->setShouldPrintBackgrounds(enabled); |
| 602 } | 602 } |
| 603 | 603 |
| 604 void WebSettingsImpl::setShouldBlendWithExistingContent(bool enabled) |
| 605 { |
| 606 m_settings->setShouldBlendWithExistingContent(enabled); |
| 607 } |
| 608 |
| 604 void WebSettingsImpl::setEnableScrollAnimator(bool enabled) | 609 void WebSettingsImpl::setEnableScrollAnimator(bool enabled) |
| 605 { | 610 { |
| 606 m_settings->setScrollAnimatorEnabled(enabled); | 611 m_settings->setScrollAnimatorEnabled(enabled); |
| 607 } | 612 } |
| 608 | 613 |
| 609 void WebSettingsImpl::setEnableTouchAdjustment(bool enabled) | 614 void WebSettingsImpl::setEnableTouchAdjustment(bool enabled) |
| 610 { | 615 { |
| 611 m_settings->setTouchAdjustmentEnabled(enabled); | 616 m_settings->setTouchAdjustmentEnabled(enabled); |
| 612 } | 617 } |
| 613 | 618 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 { | 725 { |
| 721 m_settings->setPinchVirtualViewportEnabled(enabled); | 726 m_settings->setPinchVirtualViewportEnabled(enabled); |
| 722 } | 727 } |
| 723 | 728 |
| 724 void WebSettingsImpl::setUseSolidColorScrollbars(bool enabled) | 729 void WebSettingsImpl::setUseSolidColorScrollbars(bool enabled) |
| 725 { | 730 { |
| 726 m_settings->setUseSolidColorScrollbars(enabled); | 731 m_settings->setUseSolidColorScrollbars(enabled); |
| 727 } | 732 } |
| 728 | 733 |
| 729 } // namespace WebKit | 734 } // namespace WebKit |
| OLD | NEW |