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

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

Issue 302993003: Route selection bounds updates through WebLayerTreeView (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Factor common logic to RenderLayerCompositor Created 6 years, 6 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 void WebSettingsImpl::setAcceleratedCompositingForVideoEnabled(bool enabled) 443 void WebSettingsImpl::setAcceleratedCompositingForVideoEnabled(bool enabled)
444 { 444 {
445 m_settings->setAcceleratedCompositingForVideoEnabled(enabled); 445 m_settings->setAcceleratedCompositingForVideoEnabled(enabled);
446 } 446 }
447 447
448 void WebSettingsImpl::setAcceleratedCompositingForOverflowScrollEnabled(bool ena bled) 448 void WebSettingsImpl::setAcceleratedCompositingForOverflowScrollEnabled(bool ena bled)
449 { 449 {
450 m_settings->setAcceleratedCompositingForOverflowScrollEnabled(enabled); 450 m_settings->setAcceleratedCompositingForOverflowScrollEnabled(enabled);
451 } 451 }
452 452
453 void WebSettingsImpl::setCompositedSelectionUpdatesEnabled(bool enabled)
454 {
455 m_settings->setCompositedSelectionUpdatesEnabled(enabled);
456 }
457
453 void WebSettingsImpl::setCompositorDrivenAcceleratedScrollingEnabled(bool enable d) 458 void WebSettingsImpl::setCompositorDrivenAcceleratedScrollingEnabled(bool enable d)
454 { 459 {
455 m_settings->setCompositorDrivenAcceleratedScrollingEnabled(enabled); 460 m_settings->setCompositorDrivenAcceleratedScrollingEnabled(enabled);
456 } 461 }
457 462
458 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo l enabled) 463 void WebSettingsImpl::setAcceleratedCompositingForFixedRootBackgroundEnabled(boo l enabled)
459 { 464 {
460 m_settings->setAcceleratedCompositingForFixedRootBackgroundEnabled(enabled); 465 m_settings->setAcceleratedCompositingForFixedRootBackgroundEnabled(enabled);
461 } 466 }
462 467
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 void WebSettingsImpl::setEnableScrollAnimator(bool enabled) 584 void WebSettingsImpl::setEnableScrollAnimator(bool enabled)
580 { 585 {
581 m_settings->setScrollAnimatorEnabled(enabled); 586 m_settings->setScrollAnimatorEnabled(enabled);
582 } 587 }
583 588
584 void WebSettingsImpl::setEnableTouchAdjustment(bool enabled) 589 void WebSettingsImpl::setEnableTouchAdjustment(bool enabled)
585 { 590 {
586 m_settings->setTouchAdjustmentEnabled(enabled); 591 m_settings->setTouchAdjustmentEnabled(enabled);
587 } 592 }
588 593
594 bool WebSettingsImpl::compositedSelectionUpdatesEnabled() const
595 {
596 return m_settings->compositedSelectionUpdatesEnabled();
597 }
598
589 bool WebSettingsImpl::scrollAnimatorEnabled() const 599 bool WebSettingsImpl::scrollAnimatorEnabled() const
590 { 600 {
591 return m_settings->scrollAnimatorEnabled(); 601 return m_settings->scrollAnimatorEnabled();
592 } 602 }
593 603
594 bool WebSettingsImpl::touchEditingEnabled() const 604 bool WebSettingsImpl::touchEditingEnabled() const
595 { 605 {
596 return m_settings->touchEditingEnabled(); 606 return m_settings->touchEditingEnabled();
597 } 607 }
598 608
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 { 715 {
706 m_settings->setUseSolidColorScrollbars(enabled); 716 m_settings->setUseSolidColorScrollbars(enabled);
707 } 717 }
708 718
709 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled) 719 void WebSettingsImpl::setMainFrameResizesAreOrientationChanges(bool enabled)
710 { 720 {
711 m_mainFrameResizesAreOrientationChanges = enabled; 721 m_mainFrameResizesAreOrientationChanges = enabled;
712 } 722 }
713 723
714 } // namespace blink 724 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698