Chromium Code Reviews| 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. |