| Index: cc/frame_rate_counter.h
|
| diff --git a/cc/frame_rate_counter.h b/cc/frame_rate_counter.h
|
| index 3196c28008b4920d0a0d241c4e4a3ac950e0fa40..008c2f30e5551f3de73e21506c3fefb3429d5e5d 100644
|
| --- a/cc/frame_rate_counter.h
|
| +++ b/cc/frame_rate_counter.h
|
| @@ -13,9 +13,9 @@ namespace cc {
|
|
|
| // This class maintains a history of timestamps, and provides functionality to
|
| // intelligently compute average frames per second (and standard deviation).
|
| -class CCFrameRateCounter {
|
| +class FrameRateCounter {
|
| public:
|
| - static scoped_ptr<CCFrameRateCounter> create();
|
| + static scoped_ptr<FrameRateCounter> create();
|
|
|
| void markBeginningOfFrame(base::TimeTicks timestamp);
|
| void markEndOfFrame();
|
| @@ -34,7 +34,7 @@ public:
|
| int droppedFrameCount() const { return m_droppedFrameCount; }
|
|
|
| private:
|
| - CCFrameRateCounter();
|
| + FrameRateCounter();
|
|
|
| base::TimeDelta frameInterval(int frameNumber) const;
|
| int frameIndex(int frameNumber) const;
|
| @@ -58,7 +58,7 @@ private:
|
|
|
| int m_droppedFrameCount;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(CCFrameRateCounter);
|
| + DISALLOW_COPY_AND_ASSIGN(FrameRateCounter);
|
| };
|
|
|
| } // namespace cc
|
|
|