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

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. 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/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
This is Rietveld 408576698