Index: cc/frame_rate_controller.h |
=================================================================== |
--- cc/frame_rate_controller.h (revision 175415) |
+++ cc/frame_rate_controller.h (working copy) |
@@ -29,10 +29,6 @@ |
class CC_EXPORT FrameRateController { |
public: |
- enum { |
- kDefaultMaxFramesPending = 2 |
- }; |
- |
explicit FrameRateController(scoped_refptr<TimeSource>); |
// Alternate form of FrameRateController with unthrottled frame-rate. |
explicit FrameRateController(Thread*); |
@@ -52,7 +48,6 @@ |
void didFinishFrame(); |
void didAbortAllPendingFrames(); |
void setMaxFramesPending(int); // 0 for unlimited. |
- int maxFramesPending() const { return m_maxFramesPending; } |
// This returns null for unthrottled frame-rate. |
base::TimeTicks nextTickTime(); |