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

Unified Diff: ppapi/example/example.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/var.cc ('k') | ppapi/tests/test_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/example/example.cc
===================================================================
--- ppapi/example/example.cc (revision 70488)
+++ ppapi/example/example.cc (working copy)
@@ -44,6 +44,8 @@
class MyScriptableObject : public pp::deprecated::ScriptableObject {
public:
+ MyScriptableObject(pp::Instance* instance) : instance_(instance) {}
+
virtual bool HasMethod(const pp::Var& method, pp::Var* exception) {
return method.AsString() == "toString";
}
@@ -56,7 +58,7 @@
virtual pp::Var GetProperty(const pp::Var& name, pp::Var* exception) {
if (name.is_string() && name.AsString() == "blah")
- return new MyScriptableObject();
+ return pp::Var(instance_, new MyScriptableObject(instance_));
return pp::Var();
}
@@ -72,6 +74,9 @@
return pp::Var("hello world");
return pp::Var();
}
+
+ private:
+ pp::Instance* instance_;
};
class MyFetcherClient {
@@ -191,11 +196,11 @@
}
virtual pp::Var GetInstanceObject() {
- return new MyScriptableObject();
+ return pp::Var(this, new MyScriptableObject(this));
}
pp::ImageData PaintImage(int width, int height) {
- pp::ImageData image(PP_IMAGEDATAFORMAT_BGRA_PREMUL,
+ pp::ImageData image(this, PP_IMAGEDATAFORMAT_BGRA_PREMUL,
pp::Size(width, height), false);
if (image.is_null()) {
printf("Couldn't allocate the image data\n");
@@ -240,7 +245,7 @@
width_ = position.size().width();
height_ = position.size().height();
- device_context_ = pp::Graphics2D(pp::Size(width_, height_), false);
+ device_context_ = pp::Graphics2D(this, pp::Size(width_, height_), false);
if (!BindGraphics(device_context_)) {
printf("Couldn't bind the device context\n");
return;
@@ -348,7 +353,7 @@
pp::Var doc = window.GetProperty("document");
pp::Var body = doc.GetProperty("body");
- pp::Var obj(new MyScriptableObject());
+ pp::Var obj(this, new MyScriptableObject(this));
// Our object should have its toString method called.
Log("Testing MyScriptableObject::toString():");
« no previous file with comments | « ppapi/cpp/var.cc ('k') | ppapi/tests/test_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698