Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1009)

Unified Diff: ppapi/thunk/ppb_graphics_2d_api.h

Issue 10823378: Cache image data objects. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/thunk/ppb_graphics_2d_api.h
diff --git a/ppapi/thunk/ppb_graphics_2d_api.h b/ppapi/thunk/ppb_graphics_2d_api.h
index 80c8c78f272fd51aa129dba2ddfff6c4bba149f7..f0b76765d1e05868380acf9e188a32187badc08b 100644
--- a/ppapi/thunk/ppb_graphics_2d_api.h
+++ b/ppapi/thunk/ppb_graphics_2d_api.h
@@ -27,9 +27,17 @@ class PPB_Graphics2D_API {
virtual void Scroll(const PP_Rect* clip_rect,
const PP_Point* amount) = 0;
virtual void ReplaceContents(PP_Resource image_data) = 0;
- virtual int32_t Flush(scoped_refptr<TrackedCallback> callback) = 0;
virtual bool SetScale(float scale) = 0;
virtual float GetScale() = 0;
+
+ // When |*old_image_data| is non-null and the flush is executing a replace
yzshen1 2012/08/21 22:07:24 nit: |*old_image_data| looks like "deref old_image
+ // contents (which leaves the "old" ImageData unowned), the resource ID of
+ // the old image data will be placed into |*old_image_data|. A reference to
+ // this resource will be transferred to the caller. If there is no replace
+ // contents operation, old_image_data will be ignored. If |*old_image_data|
+ // is null, then the old image data will be destroyed if there was one.
+ virtual int32_t Flush(scoped_refptr<TrackedCallback> callback,
+ PP_Resource* old_image_data) = 0;
yzshen1 2012/08/21 22:07:24 Please comment that |old_image_data| is used 'sync
};
} // namespace thunk

Powered by Google App Engine
This is Rietveld 408576698