| 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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 void WebSettingsImpl::setAllowUniversalAccessFromFileURLs(bool allow) | 394 void WebSettingsImpl::setAllowUniversalAccessFromFileURLs(bool allow) |
| 395 { | 395 { |
| 396 m_settings->setAllowUniversalAccessFromFileURLs(allow); | 396 m_settings->setAllowUniversalAccessFromFileURLs(allow); |
| 397 } | 397 } |
| 398 | 398 |
| 399 void WebSettingsImpl::setAllowFileAccessFromFileURLs(bool allow) | 399 void WebSettingsImpl::setAllowFileAccessFromFileURLs(bool allow) |
| 400 { | 400 { |
| 401 m_settings->setAllowFileAccessFromFileURLs(allow); | 401 m_settings->setAllowFileAccessFromFileURLs(allow); |
| 402 } | 402 } |
| 403 | 403 |
| 404 void WebSettingsImpl::setThreadedScrollingEnabled(bool enabled) |
| 405 { |
| 406 m_settings->setThreadedScrollingEnabled(enabled); |
| 407 } |
| 408 |
| 404 void WebSettingsImpl::setTouchDragDropEnabled(bool enabled) | 409 void WebSettingsImpl::setTouchDragDropEnabled(bool enabled) |
| 405 { | 410 { |
| 406 m_settings->setTouchDragDropEnabled(enabled); | 411 m_settings->setTouchDragDropEnabled(enabled); |
| 407 } | 412 } |
| 408 | 413 |
| 409 void WebSettingsImpl::setTouchEditingEnabled(bool enabled) | 414 void WebSettingsImpl::setTouchEditingEnabled(bool enabled) |
| 410 { | 415 { |
| 411 m_settings->setTouchEditingEnabled(enabled); | 416 m_settings->setTouchEditingEnabled(enabled); |
| 412 } | 417 } |
| 413 | 418 |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 { | 731 { |
| 727 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); | 732 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); |
| 728 } | 733 } |
| 729 | 734 |
| 730 void WebSettingsImpl::setV8ScriptStreamingEnabled(bool enabled) | 735 void WebSettingsImpl::setV8ScriptStreamingEnabled(bool enabled) |
| 731 { | 736 { |
| 732 m_settings->setV8ScriptStreamingEnabled(enabled); | 737 m_settings->setV8ScriptStreamingEnabled(enabled); |
| 733 } | 738 } |
| 734 | 739 |
| 735 } // namespace blink | 740 } // namespace blink |
| OLD | NEW |