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

Unified Diff: cc/rate_limiter.h

Issue 11232051: Remove static thread pointers from CC (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Apply code review comments Created 8 years, 2 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: cc/rate_limiter.h
diff --git a/cc/rate_limiter.h b/cc/rate_limiter.h
index 163086484510e33077f5fe37953ca18ce8c4e940..935e64b60e4c84b4a7bf6c7e5f8bff1dce162906 100644
--- a/cc/rate_limiter.h
+++ b/cc/rate_limiter.h
@@ -13,6 +13,8 @@ class WebGraphicsContext3D;
namespace cc {
+class Thread;
+
class RateLimiterClient {
public:
virtual void rateLimit() = 0;
@@ -24,7 +26,7 @@ public:
// compositor.
class RateLimiter : public base::RefCounted<RateLimiter> {
public:
- static scoped_refptr<RateLimiter> create(WebKit::WebGraphicsContext3D*, RateLimiterClient*);
+ static scoped_refptr<RateLimiter> create(WebKit::WebGraphicsContext3D*, RateLimiterClient*, Thread*);
void start();
@@ -32,7 +34,7 @@ public:
void stop();
private:
- RateLimiter(WebKit::WebGraphicsContext3D*, RateLimiterClient*);
+ RateLimiter(WebKit::WebGraphicsContext3D*, RateLimiterClient*, Thread*);
~RateLimiter();
friend class base::RefCounted<RateLimiter>;
@@ -43,6 +45,7 @@ private:
WebKit::WebGraphicsContext3D* m_context;
bool m_active;
RateLimiterClient *m_client;
+ Thread* m_thread;
};
}

Powered by Google App Engine
This is Rietveld 408576698