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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 void WebSettingsImpl::setHyperlinkAuditingEnabled(bool enabled) | 572 void WebSettingsImpl::setHyperlinkAuditingEnabled(bool enabled) |
573 { | 573 { |
574 m_settings->setHyperlinkAuditingEnabled(enabled); | 574 m_settings->setHyperlinkAuditingEnabled(enabled); |
575 } | 575 } |
576 | 576 |
577 void WebSettingsImpl::setAsynchronousSpellCheckingEnabled(bool enabled) | 577 void WebSettingsImpl::setAsynchronousSpellCheckingEnabled(bool enabled) |
578 { | 578 { |
579 m_settings->setAsynchronousSpellCheckingEnabled(enabled); | 579 m_settings->setAsynchronousSpellCheckingEnabled(enabled); |
580 } | 580 } |
581 | 581 |
| 582 void WebSettingsImpl::setAutoplayExperimentMode(const WebString& mode) |
| 583 { |
| 584 m_settings->setAutoplayExperimentMode(mode); |
| 585 } |
| 586 |
582 void WebSettingsImpl::setUnifiedTextCheckerEnabled(bool enabled) | 587 void WebSettingsImpl::setUnifiedTextCheckerEnabled(bool enabled) |
583 { | 588 { |
584 m_settings->setUnifiedTextCheckerEnabled(enabled); | 589 m_settings->setUnifiedTextCheckerEnabled(enabled); |
585 } | 590 } |
586 | 591 |
587 void WebSettingsImpl::setCaretBrowsingEnabled(bool enabled) | 592 void WebSettingsImpl::setCaretBrowsingEnabled(bool enabled) |
588 { | 593 { |
589 m_settings->setCaretBrowsingEnabled(enabled); | 594 m_settings->setCaretBrowsingEnabled(enabled); |
590 } | 595 } |
591 | 596 |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 { | 819 { |
815 m_devToolsEmulator->setUseMobileViewportStyle(enabled); | 820 m_devToolsEmulator->setUseMobileViewportStyle(enabled); |
816 } | 821 } |
817 | 822 |
818 void WebSettingsImpl::setHidePinchScrollbarsNearMinScale(bool enabled) | 823 void WebSettingsImpl::setHidePinchScrollbarsNearMinScale(bool enabled) |
819 { | 824 { |
820 m_devToolsEmulator->setHidePinchScrollbarsNearMinScale(enabled); | 825 m_devToolsEmulator->setHidePinchScrollbarsNearMinScale(enabled); |
821 } | 826 } |
822 | 827 |
823 } // namespace blink | 828 } // namespace blink |
OLD | NEW |