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

Unified Diff: ppapi/cpp/image_data.h

Issue 6085009: Add an instance parameter to var objects, audio, and the 2D API. This replace... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 12 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
« no previous file with comments | « ppapi/cpp/graphics_2d.cc ('k') | ppapi/cpp/image_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/image_data.h
===================================================================
--- ppapi/cpp/image_data.h (revision 70488)
+++ ppapi/cpp/image_data.h (working copy)
@@ -12,6 +12,7 @@
namespace pp {
+class Instance;
class Plugin;
class ImageData : public Resource {
@@ -28,7 +29,8 @@
// Allocates a new ImageData in the browser with the given parameters. The
// resulting object will be is_null() if the allocation failed.
- ImageData(PP_ImageDataFormat format,
+ ImageData(Instance* instance,
+ PP_ImageDataFormat format,
const Size& size,
bool init_to_zero);
« no previous file with comments | « ppapi/cpp/graphics_2d.cc ('k') | ppapi/cpp/image_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698