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

Unified Diff: Source/WebCore/platform/graphics/chromium/RateLimiter.cpp

Issue 10201008: Merge 114475 - [chromium] Ensure RateLimiter waits for Swapbuffers completion (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: Source/WebCore/platform/graphics/chromium/RateLimiter.cpp
===================================================================
--- Source/WebCore/platform/graphics/chromium/RateLimiter.cpp (revision 114962)
+++ Source/WebCore/platform/graphics/chromium/RateLimiter.cpp (working copy)
@@ -35,14 +35,15 @@
namespace WebCore {
-PassRefPtr<RateLimiter> RateLimiter::create(GraphicsContext3D* context)
+PassRefPtr<RateLimiter> RateLimiter::create(GraphicsContext3D* context, RateLimiterClient *client)
{
- return adoptRef(new RateLimiter(context));
+ return adoptRef(new RateLimiter(context, client));
}
-RateLimiter::RateLimiter(GraphicsContext3D* context)
+RateLimiter::RateLimiter(GraphicsContext3D* context, RateLimiterClient *client)
: m_context(context)
, m_timer(this, &RateLimiter::rateLimitContext)
+ , m_client(client)
{
ASSERT(context);
ASSERT(context->getExtensions());
@@ -70,6 +71,7 @@
Extensions3DChromium* extensions = static_cast<Extensions3DChromium*>(m_context->getExtensions());
+ m_client->rateLimit();
extensions->rateLimitOffscreenContextCHROMIUM();
}

Powered by Google App Engine
This is Rietveld 408576698