Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(318)

Side by Side Diff: Source/web/WebSettingsImpl.cpp

Issue 249423002: Remove the acceleratedCompositingForAnimationEnabled setting. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rm-acceleratedCompositingForAnimationEnabled: rebase Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | public/web/WebSettings.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | public/web/WebSettings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698