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

Unified Diff: content/renderer/pepper/host_var_tracker.h

Issue 421963008: Add PepperTryCatch and V8ObjectVar classes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | « content/content_renderer.gypi ('k') | content/renderer/pepper/pepper_plugin_instance_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/host_var_tracker.h
diff --git a/content/renderer/pepper/host_var_tracker.h b/content/renderer/pepper/host_var_tracker.h
index 6abbf869765c06a6c180d3a0181a82807369eab4..8d8176a7c6eb2846b6000451b89dfa4b2d3b0940 100644
--- a/content/renderer/pepper/host_var_tracker.h
+++ b/content/renderer/pepper/host_var_tracker.h
@@ -18,12 +18,14 @@
#include "ppapi/shared_impl/host_resource.h"
#include "ppapi/shared_impl/resource_tracker.h"
#include "ppapi/shared_impl/var_tracker.h"
+#include "v8/include/v8.h"
typedef struct NPObject NPObject;
namespace ppapi {
class ArrayBufferVar;
class NPObjectVar;
+class V8ObjectVar;
class Var;
}
@@ -53,6 +55,18 @@ class HostVarTracker : public ppapi::VarTracker {
// Returns 0 if the instance isn't known.
CONTENT_EXPORT int GetLiveNPObjectVarsForInstance(PP_Instance instance) const;
+ // Tracks all live V8ObjectVar. This is so we can map between instance +
+ // V8Object and get the V8ObjectVar corresponding to it. This Add/Remove
+ // function is called by the V8ObjectVar when it is created and destroyed.
+ void AddV8ObjectVar(ppapi::V8ObjectVar* object_var) { NOTIMPLEMENTED(); }
+ void RemoveV8ObjectVar(ppapi::V8ObjectVar* object_var) { NOTIMPLEMENTED(); }
+ // Creates or retrieves a V8ObjectVar.
+ PP_Var V8ObjectVarForV8Object(PP_Instance instance,
+ v8::Handle<v8::Object> object) {
+ NOTIMPLEMENTED();
+ return PP_MakeUndefined();
+ }
+
// VarTracker public implementation.
virtual PP_Var MakeResourcePPVarFromMessage(
PP_Instance instance,
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/pepper/pepper_plugin_instance_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698