| 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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 void WebSettingsImpl::setStrictMixedContentChecking(bool enabled) | 610 void WebSettingsImpl::setStrictMixedContentChecking(bool enabled) |
| 611 { | 611 { |
| 612 m_settings->setStrictMixedContentChecking(enabled); | 612 m_settings->setStrictMixedContentChecking(enabled); |
| 613 } | 613 } |
| 614 | 614 |
| 615 void WebSettingsImpl::setStrictPowerfulFeatureRestrictions(bool enabled) | 615 void WebSettingsImpl::setStrictPowerfulFeatureRestrictions(bool enabled) |
| 616 { | 616 { |
| 617 m_settings->setStrictPowerfulFeatureRestrictions(enabled); | 617 m_settings->setStrictPowerfulFeatureRestrictions(enabled); |
| 618 } | 618 } |
| 619 | 619 |
| 620 void WebSettingsImpl::setAllowConnectingInsecureWebSocket(bool enabled) | |
| 621 { | |
| 622 m_settings->setAllowConnectingInsecureWebSocket(enabled); | |
| 623 } | |
| 624 | |
| 625 void WebSettingsImpl::setPasswordEchoEnabled(bool flag) | 620 void WebSettingsImpl::setPasswordEchoEnabled(bool flag) |
| 626 { | 621 { |
| 627 m_settings->setPasswordEchoEnabled(flag); | 622 m_settings->setPasswordEchoEnabled(flag); |
| 628 } | 623 } |
| 629 | 624 |
| 630 void WebSettingsImpl::setPasswordEchoDurationInSeconds(double durationInSeconds) | 625 void WebSettingsImpl::setPasswordEchoDurationInSeconds(double durationInSeconds) |
| 631 { | 626 { |
| 632 m_settings->setPasswordEchoDurationInSeconds(durationInSeconds); | 627 m_settings->setPasswordEchoDurationInSeconds(durationInSeconds); |
| 633 } | 628 } |
| 634 | 629 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 { | 776 { |
| 782 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); | 777 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); |
| 783 } | 778 } |
| 784 | 779 |
| 785 void WebSettingsImpl::setUseMobileViewportStyle(bool enabled) | 780 void WebSettingsImpl::setUseMobileViewportStyle(bool enabled) |
| 786 { | 781 { |
| 787 m_devToolsEmulator->setUseMobileViewportStyle(enabled); | 782 m_devToolsEmulator->setUseMobileViewportStyle(enabled); |
| 788 } | 783 } |
| 789 | 784 |
| 790 } // namespace blink | 785 } // namespace blink |
| OLD | NEW |