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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled) | 373 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled) |
374 { | 374 { |
375 m_settings->setCSSGridLayoutEnabled(enabled); | 375 m_settings->setCSSGridLayoutEnabled(enabled); |
376 } | 376 } |
377 | 377 |
378 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled) | 378 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled) |
379 { | 379 { |
380 m_settings->setCSSCustomFilterEnabled(enabled); | 380 m_settings->setCSSCustomFilterEnabled(enabled); |
381 } | 381 } |
382 | 382 |
| 383 void WebSettingsImpl::setExperimentalCSSVariablesEnabled(bool enabled) |
| 384 { |
| 385 m_settings->setCSSVariablesEnabled(enabled); |
| 386 } |
| 387 |
383 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled) | 388 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled) |
384 { | 389 { |
385 m_settings->setOpenGLMultisamplingEnabled(enabled); | 390 m_settings->setOpenGLMultisamplingEnabled(enabled); |
386 } | 391 } |
387 | 392 |
388 void WebSettingsImpl::setPrivilegedWebGLExtensionsEnabled(bool enabled) | 393 void WebSettingsImpl::setPrivilegedWebGLExtensionsEnabled(bool enabled) |
389 { | 394 { |
390 m_settings->setPrivilegedWebGLExtensionsEnabled(enabled); | 395 m_settings->setPrivilegedWebGLExtensionsEnabled(enabled); |
391 } | 396 } |
392 | 397 |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 { | 676 { |
672 m_settings->setSelectionIncludesAltImageText(enabled); | 677 m_settings->setSelectionIncludesAltImageText(enabled); |
673 } | 678 } |
674 | 679 |
675 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) | 680 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) |
676 { | 681 { |
677 m_settings->setSmartInsertDeleteEnabled(enabled); | 682 m_settings->setSmartInsertDeleteEnabled(enabled); |
678 } | 683 } |
679 | 684 |
680 } // namespace WebKit | 685 } // namespace WebKit |
OLD | NEW |