Index: cc/resources/ui_resource_bitmap.cc |
diff --git a/cc/resources/ui_resource_bitmap.cc b/cc/resources/ui_resource_bitmap.cc |
index 8bbfb37deee70a1ebaede084bea89fcc1361064d..1510607d8d045c97cab55ef325372714afd7948f 100644 |
--- a/cc/resources/ui_resource_bitmap.cc |
+++ b/cc/resources/ui_resource_bitmap.cc |
@@ -11,10 +11,12 @@ namespace cc { |
scoped_refptr<UIResourceBitmap> |
UIResourceBitmap::Create(uint8_t* pixels, |
UIResourceFormat format, |
+ UIResourceWrapMode wrap_mode, |
gfx::Size size) { |
scoped_refptr<UIResourceBitmap> ret = new UIResourceBitmap(); |
ret->pixels_ = scoped_ptr<uint8_t[]>(pixels); |
ret->format_ = format; |
+ ret->wrap_mode_ = wrap_mode; |
ret->size_ = size; |
return ret; |