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

Unified Diff: cc/rate_limiter.h

Issue 12086018: GTTF: Add missing virtual destructors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 11 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 df7850dd0bc7e496f2821cf403972ac220b29ab7..4690270fddb7304b055fdefeeef1c102d14b4101 100644
--- a/cc/rate_limiter.h
+++ b/cc/rate_limiter.h
@@ -18,6 +18,8 @@ class Thread;
class RateLimiterClient {
public:
virtual void rateLimit() = 0;
+protected:
jamesr 2013/01/28 19:20:43 newline before 'protected'
+ virtual ~RateLimiterClient() { }
};
// A RateLimiter can be used to make sure that a single context does not dominate all execution time.

Powered by Google App Engine
This is Rietveld 408576698