| 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 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 void WebSettingsImpl::setMinimumAccelerated2dCanvasSize(int numPixels) | 540 void WebSettingsImpl::setMinimumAccelerated2dCanvasSize(int numPixels) |
| 541 { | 541 { |
| 542 m_settings->setMinimumAccelerated2dCanvasSize(numPixels); | 542 m_settings->setMinimumAccelerated2dCanvasSize(numPixels); |
| 543 } | 543 } |
| 544 | 544 |
| 545 void WebSettingsImpl::setHyperlinkAuditingEnabled(bool enabled) | 545 void WebSettingsImpl::setHyperlinkAuditingEnabled(bool enabled) |
| 546 { | 546 { |
| 547 m_settings->setHyperlinkAuditingEnabled(enabled); | 547 m_settings->setHyperlinkAuditingEnabled(enabled); |
| 548 } | 548 } |
| 549 | 549 |
| 550 void WebSettingsImpl::setLayerSquashingEnabled(bool enabled) | |
| 551 { | |
| 552 m_settings->setLayerSquashingEnabled(enabled); | |
| 553 } | |
| 554 | |
| 555 void WebSettingsImpl::setAsynchronousSpellCheckingEnabled(bool enabled) | 550 void WebSettingsImpl::setAsynchronousSpellCheckingEnabled(bool enabled) |
| 556 { | 551 { |
| 557 m_settings->setAsynchronousSpellCheckingEnabled(enabled); | 552 m_settings->setAsynchronousSpellCheckingEnabled(enabled); |
| 558 } | 553 } |
| 559 | 554 |
| 560 void WebSettingsImpl::setUnifiedTextCheckerEnabled(bool enabled) | 555 void WebSettingsImpl::setUnifiedTextCheckerEnabled(bool enabled) |
| 561 { | 556 { |
| 562 m_settings->setUnifiedTextCheckerEnabled(enabled); | 557 m_settings->setUnifiedTextCheckerEnabled(enabled); |
| 563 } | 558 } |
| 564 | 559 |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 { | 746 { |
| 752 m_settings->setV8ScriptStreamingEnabled(enabled); | 747 m_settings->setV8ScriptStreamingEnabled(enabled); |
| 753 } | 748 } |
| 754 | 749 |
| 755 void WebSettingsImpl::setV8ScriptStreamingMode(V8ScriptStreamingMode mode) | 750 void WebSettingsImpl::setV8ScriptStreamingMode(V8ScriptStreamingMode mode) |
| 756 { | 751 { |
| 757 m_settings->setV8ScriptStreamingMode(static_cast<blink::ScriptStreamingMode>
(mode)); | 752 m_settings->setV8ScriptStreamingMode(static_cast<blink::ScriptStreamingMode>
(mode)); |
| 758 } | 753 } |
| 759 | 754 |
| 760 } // namespace blink | 755 } // namespace blink |
| OLD | NEW |