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

Unified Diff: ppapi/cpp/image_data.cc

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/image_data.h ('k') | ppapi/cpp/paint_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/image_data.cc
===================================================================
--- ppapi/cpp/image_data.cc (revision 70488)
+++ ppapi/cpp/image_data.cc (working copy)
@@ -43,7 +43,8 @@
PassRefAndInitData(resource);
}
-ImageData::ImageData(PP_ImageDataFormat format,
+ImageData::ImageData(Instance* instance,
+ PP_ImageDataFormat format,
const Size& size,
bool init_to_zero)
: data_(NULL) {
@@ -53,7 +54,7 @@
return;
PassRefAndInitData(get_interface<PPB_ImageData>()->Create(
- Module::Get()->pp_module(), format, &size.pp_size(),
+ instance->pp_instance(), format, &size.pp_size(),
BoolToPPBool(init_to_zero)));
}
« no previous file with comments | « ppapi/cpp/image_data.h ('k') | ppapi/cpp/paint_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698