| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled) | 375 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled) |
| 376 { | 376 { |
| 377 m_settings->setCSSGridLayoutEnabled(enabled); | 377 m_settings->setCSSGridLayoutEnabled(enabled); |
| 378 } | 378 } |
| 379 | 379 |
| 380 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled) | 380 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled) |
| 381 { | 381 { |
| 382 m_settings->setCSSCustomFilterEnabled(enabled); | 382 m_settings->setCSSCustomFilterEnabled(enabled); |
| 383 } | 383 } |
| 384 | 384 |
| 385 void WebSettingsImpl::setExperimentalCSSVariablesEnabled(bool enabled) | |
| 386 { | |
| 387 m_settings->setCSSVariablesEnabled(enabled); | |
| 388 } | |
| 389 | |
| 390 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled) | 385 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled) |
| 391 { | 386 { |
| 392 m_settings->setOpenGLMultisamplingEnabled(enabled); | 387 m_settings->setOpenGLMultisamplingEnabled(enabled); |
| 393 } | 388 } |
| 394 | 389 |
| 395 void WebSettingsImpl::setPrivilegedWebGLExtensionsEnabled(bool enabled) | 390 void WebSettingsImpl::setPrivilegedWebGLExtensionsEnabled(bool enabled) |
| 396 { | 391 { |
| 397 m_settings->setPrivilegedWebGLExtensionsEnabled(enabled); | 392 m_settings->setPrivilegedWebGLExtensionsEnabled(enabled); |
| 398 } | 393 } |
| 399 | 394 |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 { | 678 { |
| 684 m_settings->setSelectionIncludesAltImageText(enabled); | 679 m_settings->setSelectionIncludesAltImageText(enabled); |
| 685 } | 680 } |
| 686 | 681 |
| 687 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) | 682 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) |
| 688 { | 683 { |
| 689 m_settings->setSmartInsertDeleteEnabled(enabled); | 684 m_settings->setSmartInsertDeleteEnabled(enabled); |
| 690 } | 685 } |
| 691 | 686 |
| 692 } // namespace WebKit | 687 } // namespace WebKit |
| OLD | NEW |