| 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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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::setPresentationRequiresUserGesture(bool required) { | 632 void WebSettingsImpl::setPresentationRequiresUserGesture(bool required) { |
| 633 m_settings->setPresentationRequiresUserGesture(required); | 633 m_settings->setPresentationRequiresUserGesture(required); |
| 634 } | 634 } |
| 635 | 635 |
| 636 void WebSettingsImpl::setEmbeddedMediaExperienceEnabled(bool enabled) { |
| 637 m_settings->setEmbeddedMediaExperienceEnabled(enabled); |
| 638 } |
| 639 |
| 636 void WebSettingsImpl::setViewportEnabled(bool enabled) { | 640 void WebSettingsImpl::setViewportEnabled(bool enabled) { |
| 637 m_settings->setViewportEnabled(enabled); | 641 m_settings->setViewportEnabled(enabled); |
| 638 } | 642 } |
| 639 | 643 |
| 640 void WebSettingsImpl::setViewportMetaEnabled(bool enabled) { | 644 void WebSettingsImpl::setViewportMetaEnabled(bool enabled) { |
| 641 m_settings->setViewportMetaEnabled(enabled); | 645 m_settings->setViewportMetaEnabled(enabled); |
| 642 } | 646 } |
| 643 | 647 |
| 644 void WebSettingsImpl::setSyncXHRInDocumentsEnabled(bool enabled) { | 648 void WebSettingsImpl::setSyncXHRInDocumentsEnabled(bool enabled) { |
| 645 m_settings->setSyncXHRInDocumentsEnabled(enabled); | 649 m_settings->setSyncXHRInDocumentsEnabled(enabled); |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 void WebSettingsImpl::setExpensiveBackgroundThrottlingMaxBudget( | 717 void WebSettingsImpl::setExpensiveBackgroundThrottlingMaxBudget( |
| 714 float maxBudget) { | 718 float maxBudget) { |
| 715 m_expensiveBackgroundThrottlingMaxBudget = maxBudget; | 719 m_expensiveBackgroundThrottlingMaxBudget = maxBudget; |
| 716 } | 720 } |
| 717 | 721 |
| 718 void WebSettingsImpl::setExpensiveBackgroundThrottlingMaxDelay(float maxDelay) { | 722 void WebSettingsImpl::setExpensiveBackgroundThrottlingMaxDelay(float maxDelay) { |
| 719 m_expensiveBackgroundThrottlingMaxDelay = maxDelay; | 723 m_expensiveBackgroundThrottlingMaxDelay = maxDelay; |
| 720 } | 724 } |
| 721 | 725 |
| 722 } // namespace blink | 726 } // namespace blink |
| OLD | NEW |