| Index: cc/CCFrameRateController.h
|
| diff --git a/cc/CCFrameRateController.h b/cc/CCFrameRateController.h
|
| index 6d1c4a8757c4f9853380717a2a624c7ee1942e10..c38914b34184f46de397e1a1dfec554643d39880 100644
|
| --- a/cc/CCFrameRateController.h
|
| +++ b/cc/CCFrameRateController.h
|
| @@ -6,7 +6,7 @@
|
| #define CCFrameRateController_h
|
|
|
| #include "CCTimer.h"
|
| -
|
| +#include "base/time.h"
|
| #include <wtf/Deque.h>
|
| #include <wtf/OwnPtr.h>
|
| #include <wtf/PassOwnPtr.h>
|
| @@ -47,9 +47,9 @@ public:
|
| void didFinishFrame();
|
| void didAbortAllPendingFrames();
|
| void setMaxFramesPending(int); // 0 for unlimited.
|
| - double nextTickTimeIfActivated();
|
| + base::TimeTicks nextTickTimeIfActivated();
|
|
|
| - void setTimebaseAndInterval(double timebase, double intervalSeconds);
|
| + void setTimebaseAndInterval(base::TimeTicks timebase, base::TimeDelta interval);
|
| void setSwapBuffersCompleteSupported(bool);
|
|
|
| protected:
|
|
|