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); |