Index: cc/thread_proxy.h |
diff --git a/cc/thread_proxy.h b/cc/thread_proxy.h |
index 534bb33d0c8a60cd120b2048b8065e37eecdcc72..12496872d44a182df596178409b26e67b5641d29 100644 |
--- a/cc/thread_proxy.h |
+++ b/cc/thread_proxy.h |
@@ -29,7 +29,7 @@ public: |
virtual ~ThreadProxy(); |
// Proxy implementation |
- virtual bool compositeAndReadback(void *pixels, const IntRect&) OVERRIDE; |
+ virtual bool compositeAndReadback(void *pixels, const gfx::Rect&) OVERRIDE; |
virtual void startPageScaleAnimation(const IntSize& targetPosition, bool useAnchor, float scale, base::TimeDelta duration) OVERRIDE; |
virtual void finishAllRendering() OVERRIDE; |
virtual bool isStarted() const OVERRIDE; |
@@ -105,7 +105,7 @@ private: |
CompletionEvent completion; |
bool success; |
void* pixels; |
- IntRect rect; |
+ gfx::Rect rect; |
}; |
void forceBeginFrameOnImplThread(CompletionEvent*); |
void beginFrameCompleteOnImplThread(CompletionEvent*, ResourceUpdateQueue*); |