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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 void WebSettingsImpl::setNavigateOnDragDrop(bool enabled) | 642 void WebSettingsImpl::setNavigateOnDragDrop(bool enabled) |
643 { | 643 { |
644 m_settings->setNavigateOnDragDrop(enabled); | 644 m_settings->setNavigateOnDragDrop(enabled); |
645 } | 645 } |
646 | 646 |
647 void WebSettingsImpl::setAllowCustomScrollbarInMainFrame(bool enabled) | 647 void WebSettingsImpl::setAllowCustomScrollbarInMainFrame(bool enabled) |
648 { | 648 { |
649 m_settings->setAllowCustomScrollbarInMainFrame(enabled); | 649 m_settings->setAllowCustomScrollbarInMainFrame(enabled); |
650 } | 650 } |
651 | 651 |
| 652 // TODO(danakj): Remove this method. |
652 void WebSettingsImpl::setCompositedScrollingForFramesEnabled(bool enabled) | 653 void WebSettingsImpl::setCompositedScrollingForFramesEnabled(bool enabled) |
653 { | 654 { |
654 m_settings->setCompositedScrollingForFramesEnabled(enabled); | |
655 } | 655 } |
656 | 656 |
657 void WebSettingsImpl::setSelectTrailingWhitespaceEnabled(bool enabled) | 657 void WebSettingsImpl::setSelectTrailingWhitespaceEnabled(bool enabled) |
658 { | 658 { |
659 m_settings->setSelectTrailingWhitespaceEnabled(enabled); | 659 m_settings->setSelectTrailingWhitespaceEnabled(enabled); |
660 } | 660 } |
661 | 661 |
662 void WebSettingsImpl::setSelectionIncludesAltImageText(bool enabled) | 662 void WebSettingsImpl::setSelectionIncludesAltImageText(bool enabled) |
663 { | 663 { |
664 m_settings->setSelectionIncludesAltImageText(enabled); | 664 m_settings->setSelectionIncludesAltImageText(enabled); |
(...skipping 28 matching lines...) Expand all 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 |