| 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 void WebSettingsImpl::setAcceleratedCompositingForPluginsEnabled(bool enabled) | 478 void WebSettingsImpl::setAcceleratedCompositingForPluginsEnabled(bool enabled) |
| 479 { | 479 { |
| 480 m_settings->setAcceleratedCompositingForPluginsEnabled(enabled); | 480 m_settings->setAcceleratedCompositingForPluginsEnabled(enabled); |
| 481 } | 481 } |
| 482 | 482 |
| 483 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled) | 483 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled) |
| 484 { | 484 { |
| 485 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled); | 485 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled); |
| 486 } | 486 } |
| 487 | 487 |
| 488 void WebSettingsImpl::setAcceleratedCompositingForAnimationEnabled(bool enabled) | |
| 489 { | |
| 490 m_settings->setAcceleratedCompositingForAnimationEnabled(enabled); | |
| 491 } | |
| 492 | |
| 493 void WebSettingsImpl::setAccelerated2dCanvasEnabled(bool enabled) | 488 void WebSettingsImpl::setAccelerated2dCanvasEnabled(bool enabled) |
| 494 { | 489 { |
| 495 m_settings->setAccelerated2dCanvasEnabled(enabled); | 490 m_settings->setAccelerated2dCanvasEnabled(enabled); |
| 496 } | 491 } |
| 497 | 492 |
| 498 void WebSettingsImpl::setAccelerated2dCanvasMSAASampleCount(int count) | 493 void WebSettingsImpl::setAccelerated2dCanvasMSAASampleCount(int count) |
| 499 { | 494 { |
| 500 m_settings->setAccelerated2dCanvasMSAASampleCount(count); | 495 m_settings->setAccelerated2dCanvasMSAASampleCount(count); |
| 501 } | 496 } |
| 502 | 497 |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 { | 730 { |
| 736 m_settings->setUseThreadedHTMLParserForDataURLs(enabled); | 731 m_settings->setUseThreadedHTMLParserForDataURLs(enabled); |
| 737 } | 732 } |
| 738 | 733 |
| 739 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled) | 734 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled) |
| 740 { | 735 { |
| 741 m_mainFrameResizesAreOrientationChanges = enabled; | 736 m_mainFrameResizesAreOrientationChanges = enabled; |
| 742 } | 737 } |
| 743 | 738 |
| 744 } // namespace blink | 739 } // namespace blink |
| OLD | NEW |