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

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

Issue 23483051: Blend background with existing content (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Default to false again Created 7 years, 3 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 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
594 void WebSettingsImpl::setPerTilePaintingEnabled(bool enabled) 594 void WebSettingsImpl::setPerTilePaintingEnabled(bool enabled)
595 { 595 {
596 m_perTilePaintingEnabled = enabled; 596 m_perTilePaintingEnabled = enabled;
597 } 597 }
598 598
599 void WebSettingsImpl::setShouldPrintBackgrounds(bool enabled) 599 void WebSettingsImpl::setShouldPrintBackgrounds(bool enabled)
600 { 600 {
601 m_settings->setShouldPrintBackgrounds(enabled); 601 m_settings->setShouldPrintBackgrounds(enabled);
602 } 602 }
603 603
604 void WebSettingsImpl::setShouldBlendWithExistingContent(bool enabled)
605 {
606 m_settings->setShouldBlendWithExistingContent(enabled);
607 }
608
604 void WebSettingsImpl::setEnableScrollAnimator(bool enabled) 609 void WebSettingsImpl::setEnableScrollAnimator(bool enabled)
605 { 610 {
606 m_settings->setScrollAnimatorEnabled(enabled); 611 m_settings->setScrollAnimatorEnabled(enabled);
607 } 612 }
608 613
609 void WebSettingsImpl::setEnableTouchAdjustment(bool enabled) 614 void WebSettingsImpl::setEnableTouchAdjustment(bool enabled)
610 { 615 {
611 m_settings->setTouchAdjustmentEnabled(enabled); 616 m_settings->setTouchAdjustmentEnabled(enabled);
612 } 617 }
613 618
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 { 725 {
721 m_settings->setPinchVirtualViewportEnabled(enabled); 726 m_settings->setPinchVirtualViewportEnabled(enabled);
722 } 727 }
723 728
724 void WebSettingsImpl::setUseSolidColorScrollbars(bool enabled) 729 void WebSettingsImpl::setUseSolidColorScrollbars(bool enabled)
725 { 730 {
726 m_settings->setUseSolidColorScrollbars(enabled); 731 m_settings->setUseSolidColorScrollbars(enabled);
727 } 732 }
728 733
729 } // namespace WebKit 734 } // namespace WebKit
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698