| 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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 void WebSettingsImpl::setCSSStickyPositionEnabled(bool enabled) | 361 void WebSettingsImpl::setCSSStickyPositionEnabled(bool enabled) |
| 362 { | 362 { |
| 363 m_settings->setCSSStickyPositionEnabled(enabled); | 363 m_settings->setCSSStickyPositionEnabled(enabled); |
| 364 } | 364 } |
| 365 | 365 |
| 366 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled) | 366 void WebSettingsImpl::setExperimentalCSSGridLayoutEnabled(bool enabled) |
| 367 { | 367 { |
| 368 m_settings->setCSSGridLayoutEnabled(enabled); | 368 m_settings->setCSSGridLayoutEnabled(enabled); |
| 369 } | 369 } |
| 370 | 370 |
| 371 void WebSettingsImpl::setRegionBasedColumnsEnabled(bool enabled) |
| 372 { |
| 373 m_settings->setRegionBasedColumnsEnabled(enabled); |
| 374 } |
| 375 |
| 371 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled) | 376 void WebSettingsImpl::setExperimentalCSSCustomFilterEnabled(bool enabled) |
| 372 { | 377 { |
| 373 m_settings->setCSSCustomFilterEnabled(enabled); | 378 m_settings->setCSSCustomFilterEnabled(enabled); |
| 374 } | 379 } |
| 375 | 380 |
| 376 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled) | 381 void WebSettingsImpl::setOpenGLMultisamplingEnabled(bool enabled) |
| 377 { | 382 { |
| 378 m_settings->setOpenGLMultisamplingEnabled(enabled); | 383 m_settings->setOpenGLMultisamplingEnabled(enabled); |
| 379 } | 384 } |
| 380 | 385 |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 { | 679 { |
| 675 m_settings->setSmartInsertDeleteEnabled(enabled); | 680 m_settings->setSmartInsertDeleteEnabled(enabled); |
| 676 } | 681 } |
| 677 | 682 |
| 678 void WebSettingsImpl::setPinchVirtualViewportEnabled(bool enabled) | 683 void WebSettingsImpl::setPinchVirtualViewportEnabled(bool enabled) |
| 679 { | 684 { |
| 680 m_settings->setPinchVirtualViewportEnabled(enabled); | 685 m_settings->setPinchVirtualViewportEnabled(enabled); |
| 681 } | 686 } |
| 682 | 687 |
| 683 } // namespace WebKit | 688 } // namespace WebKit |
| OLD | NEW |