Index: cc/resources/ui_resource_bitmap.h |
diff --git a/cc/resources/ui_resource_bitmap.h b/cc/resources/ui_resource_bitmap.h |
index 2cce0b31354ca4f402d05ccb2fd79a8b90b1d2a7..a72c302999967d2e566bc8052b718708aa51eb85 100644 |
--- a/cc/resources/ui_resource_bitmap.h |
+++ b/cc/resources/ui_resource_bitmap.h |
@@ -44,6 +44,7 @@ class CC_EXPORT UIResourceBitmap { |
// User must ensure that |skbitmap| is immutable. The SkBitmap Format should |
// be 32-bit RGBA. |
explicit UIResourceBitmap(const SkBitmap& skbitmap); |
danakj
2014/03/25 16:13:59
Are there no callers of this constructor anymore t
reed1
2014/03/25 17:19:41
still used. e.g. cc/layers/painted_scrollbar_layer
|
+ UIResourceBitmap(int width, int height, bool isOpaque = false); |
danakj
2014/03/25 16:13:59
this should be |is_opaque| or just |opaque|. howev
reed1
2014/03/25 17:19:41
I'll remove the defaultness of the argument.
danakj
2014/03/25 17:31:29
Yeh, I'm not a fan of so many constructors either.
|
UIResourceBitmap(const skia::RefPtr<SkPixelRef>& pixel_ref, gfx::Size size); |
~UIResourceBitmap(); |