Index: cc/resources/resource_update.h |
diff --git a/cc/resources/resource_update.h b/cc/resources/resource_update.h |
index 1158e6144292142d990646b41c17e2112edab3eb..caf63d99ebf1cfa9dd51fd715e8014d207e1bbe9 100644 |
--- a/cc/resources/resource_update.h |
+++ b/cc/resources/resource_update.h |
@@ -17,26 +17,26 @@ namespace cc { |
class PrioritizedResource; |
struct CC_EXPORT ResourceUpdate { |
- static ResourceUpdate Create(PrioritizedResource*, |
- const SkBitmap*, |
- gfx::Rect content_rect, |
- gfx::Rect source_rect, |
- gfx::Vector2d dest_offset); |
- static ResourceUpdate CreateFromPicture(PrioritizedResource*, |
- SkPicture*, |
- gfx::Rect content_rect, |
- gfx::Rect source_rect, |
- gfx::Vector2d dest_offset); |
- |
- ResourceUpdate(); |
- virtual ~ResourceUpdate(); |
- |
- PrioritizedResource* texture; |
- const SkBitmap* bitmap; |
- SkPicture* picture; |
- gfx::Rect content_rect; |
- gfx::Rect source_rect; |
- gfx::Vector2d dest_offset; |
+ static ResourceUpdate Create(PrioritizedResource* resource, |
+ const SkBitmap* bitmap, |
+ gfx::Rect content_rect, |
+ gfx::Rect source_rect, |
+ gfx::Vector2d dest_offset); |
+ static ResourceUpdate CreateFromPicture(PrioritizedResource* resource, |
+ SkPicture* bitmap, |
+ gfx::Rect content_rect, |
+ gfx::Rect source_rect, |
+ gfx::Vector2d dest_offset); |
+ |
+ ResourceUpdate(); |
+ virtual ~ResourceUpdate(); |
+ |
+ PrioritizedResource* texture; |
+ const SkBitmap* bitmap; |
+ SkPicture* picture; |
+ gfx::Rect content_rect; |
+ gfx::Rect source_rect; |
+ gfx::Vector2d dest_offset; |
}; |
} |