| Index: cc/frame_rate_controller.h
|
| diff --git a/cc/frame_rate_controller.h b/cc/frame_rate_controller.h
|
| index 231ddda8a391787025a59f5a6903fe1aff583e36..41ccfd8f0c7082058a5fd4d35e52c79352cee2b7 100644
|
| --- a/cc/frame_rate_controller.h
|
| +++ b/cc/frame_rate_controller.h
|
| @@ -9,13 +9,14 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/time.h"
|
| +#include "cc/cc_export.h"
|
|
|
| namespace cc {
|
|
|
| class Thread;
|
| class TimeSource;
|
|
|
| -class FrameRateControllerClient {
|
| +class CC_EXPORT FrameRateControllerClient {
|
| public:
|
| // Throttled is true when we have a maximum number of frames pending.
|
| virtual void vsyncTick(bool throttled) = 0;
|
| @@ -26,7 +27,7 @@ protected:
|
|
|
| class FrameRateControllerTimeSourceAdapter;
|
|
|
| -class FrameRateController {
|
| +class CC_EXPORT FrameRateController {
|
| public:
|
| explicit FrameRateController(scoped_refptr<TimeSource>);
|
| // Alternate form of FrameRateController with unthrottled frame-rate.
|
|
|