diff options
Diffstat (limited to 'cc/renderer.h')
-rw-r--r-- | cc/renderer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/renderer.h b/cc/renderer.h index dfb6a87..11e00fc 100644 --- a/cc/renderer.h +++ b/cc/renderer.h @@ -17,7 +17,7 @@ class ScopedTexture; class RendererClient { public: - virtual const IntSize& deviceViewportSize() const = 0; + virtual const gfx::Size& deviceViewportSize() const = 0; virtual const LayerTreeSettings& settings() const = 0; virtual void didLoseContext() = 0; virtual void onSwapBuffersComplete() = 0; @@ -61,7 +61,7 @@ public: // puts backbuffer onscreen virtual bool swapBuffers() = 0; - virtual void getFramebufferPixels(void *pixels, const IntRect&) = 0; + virtual void getFramebufferPixels(void *pixels, const gfx::Rect&) = 0; virtual bool isContextLost(); |