Index: cc/io_surface_layer.h |
diff --git a/cc/io_surface_layer.h b/cc/io_surface_layer.h |
index 9d728a010e9e86aff4392b928cef09efdfdb443c..8045b8511aa461f64616bd203a2bf9246c96d1a2 100644 |
--- a/cc/io_surface_layer.h |
+++ b/cc/io_surface_layer.h |
@@ -13,7 +13,7 @@ class IOSurfaceLayer : public Layer { |
public: |
static scoped_refptr<IOSurfaceLayer> create(); |
- void setIOSurfaceProperties(uint32_t ioSurfaceId, const IntSize&); |
+ void setIOSurfaceProperties(uint32_t ioSurfaceId, const gfx::Size&); |
virtual scoped_ptr<LayerImpl> createLayerImpl() OVERRIDE; |
virtual bool drawsContent() const OVERRIDE; |
@@ -26,7 +26,7 @@ private: |
virtual ~IOSurfaceLayer(); |
uint32_t m_ioSurfaceId; |
- IntSize m_ioSurfaceSize; |
+ gfx::Size m_ioSurfaceSize; |
}; |
} |