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

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

Issue 247673005: Remove the acceleratedCompositingForPluginsEnabled Setting. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rm-acceleratedCompositingForPluginsEnabled: Created 6 years, 8 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
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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo l enabled) 473 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo l enabled)
474 { 474 {
475 m_settings->setAcceleratedCompositingForFixedRootBackgroundEnabled(enabled); 475 m_settings->setAcceleratedCompositingForFixedRootBackgroundEnabled(enabled);
476 } 476 }
477 477
478 void WebSettingsImpl::setAcceleratedCompositingForGpuRasterizationHintEnabled(bo ol enabled) 478 void WebSettingsImpl::setAcceleratedCompositingForGpuRasterizationHintEnabled(bo ol enabled)
479 { 479 {
480 m_settings->setAcceleratedCompositingForGpuRasterizationHintEnabled(enabled) ; 480 m_settings->setAcceleratedCompositingForGpuRasterizationHintEnabled(enabled) ;
481 } 481 }
482 482
483 void WebSettingsImpl::setAcceleratedCompositingForPluginsEnabled(bool enabled)
484 {
485 m_settings->setAcceleratedCompositingForPluginsEnabled(enabled);
486 }
487
488 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled) 483 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled)
489 { 484 {
490 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled); 485 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled);
491 } 486 }
492 487
493 void WebSettingsImpl::setAcceleratedCompositingForAnimationEnabled(bool enabled) 488 void WebSettingsImpl::setAcceleratedCompositingForAnimationEnabled(bool enabled)
494 { 489 {
495 m_settings->setAcceleratedCompositingForAnimationEnabled(enabled); 490 m_settings->setAcceleratedCompositingForAnimationEnabled(enabled);
496 } 491 }
497 492
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 { 720 {
726 m_settings->setUseSolidColorScrollbars(enabled); 721 m_settings->setUseSolidColorScrollbars(enabled);
727 } 722 }
728 723
729 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled) 724 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled)
730 { 725 {
731 m_mainFrameResizesAreOrientationChanges = enabled; 726 m_mainFrameResizesAreOrientationChanges = enabled;
732 } 727 }
733 728
734 } // namespace blink 729 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698