Chromium Code Reviews

Unified Diff: WebKit/qt/WebCoreSupport/ChromeClientQt.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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « WebKit/qt/WebCoreSupport/ChromeClientQt.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WebKit/qt/WebCoreSupport/ChromeClientQt.cpp
===================================================================
--- WebKit/qt/WebCoreSupport/ChromeClientQt.cpp (revision 73142)
+++ WebKit/qt/WebCoreSupport/ChromeClientQt.cpp (working copy)
@@ -617,9 +617,12 @@
platformPageClient()->markForSync(true);
}
-bool ChromeClientQt::allowsAcceleratedCompositing() const
+ChromeClient::CompositingTriggerFlags ChromeClientQt::allowedCompositingTriggers() const
{
- return (platformPageClient() && platformPageClient()->allowsAcceleratedCompositing());
+ if (platformPageClient() && platformPageClient()->allowsAcceleratedCompositing())
+ return AllTriggers;
+
+ return 0;
}
#endif
« no previous file with comments | « WebKit/qt/WebCoreSupport/ChromeClientQt.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine