| 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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 void WebSettingsImpl::setMockScrollbarsEnabled(bool enabled) | 435 void WebSettingsImpl::setMockScrollbarsEnabled(bool enabled) |
| 436 { | 436 { |
| 437 m_settings->setMockScrollbarsEnabled(enabled); | 437 m_settings->setMockScrollbarsEnabled(enabled); |
| 438 } | 438 } |
| 439 | 439 |
| 440 void WebSettingsImpl::setMockGestureTapHighlightsEnabled(bool enabled) | 440 void WebSettingsImpl::setMockGestureTapHighlightsEnabled(bool enabled) |
| 441 { | 441 { |
| 442 m_settings->setMockGestureTapHighlightsEnabled(enabled); | 442 m_settings->setMockGestureTapHighlightsEnabled(enabled); |
| 443 } | 443 } |
| 444 | 444 |
| 445 // TODO(danakj): Remove this method. |
| 445 void WebSettingsImpl::setAcceleratedCompositingForOverflowScrollEnabled(bool ena
bled) | 446 void WebSettingsImpl::setAcceleratedCompositingForOverflowScrollEnabled(bool ena
bled) |
| 446 { | 447 { |
| 447 m_settings->setAcceleratedCompositingForOverflowScrollEnabled(enabled); | |
| 448 } | 448 } |
| 449 | 449 |
| 450 void WebSettingsImpl::setCompositorDrivenAcceleratedScrollingEnabled(bool enable
d) | 450 void WebSettingsImpl::setCompositorDrivenAcceleratedScrollingEnabled(bool enable
d) |
| 451 { | 451 { |
| 452 m_settings->setCompositorDrivenAcceleratedScrollingEnabled(enabled); | 452 m_settings->setCompositorDrivenAcceleratedScrollingEnabled(enabled); |
| 453 } | 453 } |
| 454 | 454 |
| 455 // TODO(danakj): Remove this method. | 455 // TODO(danakj): Remove this method. |
| 456 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo
l) | 456 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo
l) |
| 457 { | 457 { |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 { | 693 { |
| 694 m_settings->setDisallowFullscreenForNonMediaElements(enabled); | 694 m_settings->setDisallowFullscreenForNonMediaElements(enabled); |
| 695 } | 695 } |
| 696 | 696 |
| 697 void WebSettingsImpl::setV8CacheOptions(V8CacheOptions options) | 697 void WebSettingsImpl::setV8CacheOptions(V8CacheOptions options) |
| 698 { | 698 { |
| 699 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); | 699 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); |
| 700 } | 700 } |
| 701 | 701 |
| 702 } // namespace blink | 702 } // namespace blink |
| OLD | NEW |