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

Side by Side Diff: Source/WebKit/chromium/src/WebSettingsImpl.cpp

Issue 13462003: Add support for accelerated fixed root background (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@background-attachment-fixed2
Patch Set: Adding a FIXME for a bit that'll need fixing. Created 7 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
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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 void WebSettingsImpl::setAcceleratedCompositingFor3DTransformsEnabled(bool enabl ed) 464 void WebSettingsImpl::setAcceleratedCompositingFor3DTransformsEnabled(bool enabl ed)
465 { 465 {
466 m_settings->setAcceleratedCompositingFor3DTransformsEnabled(enabled); 466 m_settings->setAcceleratedCompositingFor3DTransformsEnabled(enabled);
467 } 467 }
468 468
469 void WebSettingsImpl::setAcceleratedCompositingForVideoEnabled(bool enabled) 469 void WebSettingsImpl::setAcceleratedCompositingForVideoEnabled(bool enabled)
470 { 470 {
471 m_settings->setAcceleratedCompositingForVideoEnabled(enabled); 471 m_settings->setAcceleratedCompositingForVideoEnabled(enabled);
472 } 472 }
473 473
474 void WebSettingsImpl::setAcceleratedCompositingForOverflowScrollEnabled( 474 void WebSettingsImpl::setAcceleratedCompositingForOverflowScrollEnabled(bool ena bled)
475 bool enabled)
476 { 475 {
477 m_settings->setAcceleratedCompositingForOverflowScrollEnabled(enabled); 476 m_settings->setAcceleratedCompositingForOverflowScrollEnabled(enabled);
478 } 477 }
479 478
479 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo l enabled)
480 {
481 m_settings->setAcceleratedCompositingForFixedRootBackgroundEnabled(enabled);
482 }
483
480 void WebSettingsImpl::setAcceleratedCompositingForPluginsEnabled(bool enabled) 484 void WebSettingsImpl::setAcceleratedCompositingForPluginsEnabled(bool enabled)
481 { 485 {
482 m_settings->setAcceleratedCompositingForPluginsEnabled(enabled); 486 m_settings->setAcceleratedCompositingForPluginsEnabled(enabled);
483 } 487 }
484 488
485 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled) 489 void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled)
486 { 490 {
487 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled); 491 m_settings->setAcceleratedCompositingForCanvasEnabled(enabled);
488 } 492 }
489 493
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 { 739 {
736 m_settings->setSelectionIncludesAltImageText(enabled); 740 m_settings->setSelectionIncludesAltImageText(enabled);
737 } 741 }
738 742
739 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled) 743 void WebSettingsImpl::setSmartInsertDeleteEnabled(bool enabled)
740 { 744 {
741 m_settings->setSmartInsertDeleteEnabled(enabled); 745 m_settings->setSmartInsertDeleteEnabled(enabled);
742 } 746 }
743 747
744 } // namespace WebKit 748 } // namespace WebKit
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698