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

Unified Diff: WebKit/chromium/src/ChromeClientImpl.cpp

Issue 5523003: Part 1 of merges for Chromium bug #64589... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/597/
Patch Set: Created 10 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « WebKit/chromium/src/ChromeClientImpl.h ('k') | WebKit/qt/WebCoreSupport/ChromeClientQt.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebKit/chromium/src/ChromeClientImpl.cpp
===================================================================
--- WebKit/chromium/src/ChromeClientImpl.cpp (revision 73142)
+++ WebKit/chromium/src/ChromeClientImpl.cpp (working copy)
@@ -807,9 +807,12 @@
m_webView->setRootLayerNeedsDisplay();
}
-bool ChromeClientImpl::allowsAcceleratedCompositing() const
+ChromeClient::CompositingTriggerFlags ChromeClientImpl::allowedCompositingTriggers() const
{
- return m_webView->allowsAcceleratedCompositing();
+ if (!m_webView->allowsAcceleratedCompositing())
+ return 0;
+
+ return ChromeClient::AllTriggers;
}
#endif
« no previous file with comments | « WebKit/chromium/src/ChromeClientImpl.h ('k') | WebKit/qt/WebCoreSupport/ChromeClientQt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698