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

Unified Diff: ppapi/cpp/graphics_2d.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/graphics_2d.h ('k') | ppapi/cpp/image_data.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/graphics_2d.cc
===================================================================
--- ppapi/cpp/graphics_2d.cc (revision 70488)
+++ ppapi/cpp/graphics_2d.cc (working copy)
@@ -9,6 +9,7 @@
#include "ppapi/cpp/common.h"
#include "ppapi/cpp/completion_callback.h"
#include "ppapi/cpp/image_data.h"
+#include "ppapi/cpp/instance.h"
#include "ppapi/cpp/module.h"
#include "ppapi/cpp/module_impl.h"
#include "ppapi/cpp/point.h"
@@ -32,12 +33,14 @@
size_(other.size_) {
}
-Graphics2D::Graphics2D(const Size& size, bool is_always_opaque)
+Graphics2D::Graphics2D(Instance* instance,
+ const Size& size,
+ bool is_always_opaque)
: Resource() {
if (!has_interface<PPB_Graphics2D>())
return;
PassRefFromConstructor(get_interface<PPB_Graphics2D>()->Create(
- Module::Get()->pp_module(),
+ instance->pp_instance(),
&size.pp_size(),
BoolToPPBool(is_always_opaque)));
if (!is_null()) {
« no previous file with comments | « ppapi/cpp/graphics_2d.h ('k') | ppapi/cpp/image_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698