| 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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 } | 622 } |
| 623 | 623 |
| 624 void WebSettingsImpl::setMediaControlsOverlayPlayButtonEnabled(bool enabled) { | 624 void WebSettingsImpl::setMediaControlsOverlayPlayButtonEnabled(bool enabled) { |
| 625 m_settings->setMediaControlsOverlayPlayButtonEnabled(enabled); | 625 m_settings->setMediaControlsOverlayPlayButtonEnabled(enabled); |
| 626 } | 626 } |
| 627 | 627 |
| 628 void WebSettingsImpl::setMediaPlaybackRequiresUserGesture(bool required) { | 628 void WebSettingsImpl::setMediaPlaybackRequiresUserGesture(bool required) { |
| 629 m_settings->setMediaPlaybackRequiresUserGesture(required); | 629 m_settings->setMediaPlaybackRequiresUserGesture(required); |
| 630 } | 630 } |
| 631 | 631 |
| 632 void WebSettingsImpl::setMediaPlaybackGestureWhitelistScope( |
| 633 const WebString& scope) { |
| 634 m_settings->setMediaPlaybackGestureWhitelistScope(scope); |
| 635 } |
| 636 |
| 632 void WebSettingsImpl::setPresentationRequiresUserGesture(bool required) { | 637 void WebSettingsImpl::setPresentationRequiresUserGesture(bool required) { |
| 633 m_settings->setPresentationRequiresUserGesture(required); | 638 m_settings->setPresentationRequiresUserGesture(required); |
| 634 } | 639 } |
| 635 | 640 |
| 636 void WebSettingsImpl::setViewportEnabled(bool enabled) { | 641 void WebSettingsImpl::setViewportEnabled(bool enabled) { |
| 637 m_settings->setViewportEnabled(enabled); | 642 m_settings->setViewportEnabled(enabled); |
| 638 } | 643 } |
| 639 | 644 |
| 640 void WebSettingsImpl::setViewportMetaEnabled(bool enabled) { | 645 void WebSettingsImpl::setViewportMetaEnabled(bool enabled) { |
| 641 m_settings->setViewportMetaEnabled(enabled); | 646 m_settings->setViewportMetaEnabled(enabled); |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 void WebSettingsImpl::setExpensiveBackgroundThrottlingMaxBudget( | 718 void WebSettingsImpl::setExpensiveBackgroundThrottlingMaxBudget( |
| 714 float maxBudget) { | 719 float maxBudget) { |
| 715 m_expensiveBackgroundThrottlingMaxBudget = maxBudget; | 720 m_expensiveBackgroundThrottlingMaxBudget = maxBudget; |
| 716 } | 721 } |
| 717 | 722 |
| 718 void WebSettingsImpl::setExpensiveBackgroundThrottlingMaxDelay(float maxDelay) { | 723 void WebSettingsImpl::setExpensiveBackgroundThrottlingMaxDelay(float maxDelay) { |
| 719 m_expensiveBackgroundThrottlingMaxDelay = maxDelay; | 724 m_expensiveBackgroundThrottlingMaxDelay = maxDelay; |
| 720 } | 725 } |
| 721 | 726 |
| 722 } // namespace blink | 727 } // namespace blink |
| OLD | NEW |