OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/renderer/pepper/npobject_var.h" | 5 #include "content/renderer/pepper/v8object_var.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "content/public/renderer/pepper_plugin_instance.h" |
8 #include "content/renderer/pepper/host_globals.h" | 9 #include "content/renderer/pepper/host_globals.h" |
9 #include "content/renderer/pepper/host_var_tracker.h" | |
10 #include "ppapi/c/pp_var.h" | 10 #include "ppapi/c/pp_var.h" |
11 #include "third_party/WebKit/public/web/WebBindings.h" | |
12 | |
13 using blink::WebBindings; | |
14 | 11 |
15 namespace ppapi { | 12 namespace ppapi { |
16 | 13 |
17 // NPObjectVar ----------------------------------------------------------------- | 14 // V8ObjectVar ----------------------------------------------------------------- |
18 | 15 |
19 NPObjectVar::NPObjectVar(PP_Instance instance, NPObject* np_object) | 16 V8ObjectVar::V8ObjectVar(PP_Instance instance, |
20 : pp_instance_(instance), np_object_(np_object) { | 17 v8::Handle<v8::Object> v8_object) |
21 WebBindings::retainObject(np_object_); | 18 : instance_(instance) { |
22 content::HostGlobals::Get()->host_var_tracker()->AddNPObjectVar(this); | 19 v8_object_.Reset( |
| 20 content::PepperPluginInstance::Get(instance_)->GetIsolate(), v8_object); |
| 21 content::HostGlobals::Get()->host_var_tracker()->AddV8ObjectVar(this); |
23 } | 22 } |
24 | 23 |
25 NPObjectVar::~NPObjectVar() { | 24 V8ObjectVar::~V8ObjectVar() { |
26 if (pp_instance()) | 25 if (instance_) |
27 content::HostGlobals::Get()->host_var_tracker()->RemoveNPObjectVar(this); | 26 content::HostGlobals::Get()->host_var_tracker()->RemoveV8ObjectVar(this); |
28 WebBindings::releaseObject(np_object_); | 27 v8_object_.Reset(); |
29 } | 28 } |
30 | 29 |
31 NPObjectVar* NPObjectVar::AsNPObjectVar() { return this; } | 30 V8ObjectVar* V8ObjectVar::AsV8ObjectVar() { |
| 31 return this; |
| 32 } |
32 | 33 |
33 PP_VarType NPObjectVar::GetType() const { return PP_VARTYPE_OBJECT; } | 34 PP_VarType V8ObjectVar::GetType() const { |
| 35 return PP_VARTYPE_OBJECT; |
| 36 } |
34 | 37 |
35 void NPObjectVar::InstanceDeleted() { | 38 v8::Local<v8::Object> V8ObjectVar::GetHandle() const { |
36 DCHECK(pp_instance_); | 39 content::PepperPluginInstance* instance = |
37 content::HostGlobals::Get()->host_var_tracker()->RemoveNPObjectVar(this); | 40 content::PepperPluginInstance::Get(instance_); |
38 pp_instance_ = 0; | 41 if (instance) |
| 42 return v8::Local<v8::Object>::New(instance->GetIsolate(), v8_object_); |
| 43 return v8::Local<v8::Object>(); |
| 44 } |
| 45 |
| 46 void V8ObjectVar::InstanceDeleted() { |
| 47 // This is called by the HostVarTracker which will take care of removing us |
| 48 // from its set. |
| 49 DCHECK(instance_); |
| 50 instance_ = 0; |
39 } | 51 } |
40 | 52 |
41 // static | 53 // static |
42 scoped_refptr<NPObjectVar> NPObjectVar::FromPPVar(PP_Var var) { | 54 scoped_refptr<V8ObjectVar> V8ObjectVar::FromPPVar(PP_Var var) { |
43 if (var.type != PP_VARTYPE_OBJECT) | 55 if (var.type != PP_VARTYPE_OBJECT) |
44 return scoped_refptr<NPObjectVar>(NULL); | 56 return scoped_refptr<V8ObjectVar>(NULL); |
45 scoped_refptr<Var> var_object( | 57 scoped_refptr<Var> var_object( |
46 PpapiGlobals::Get()->GetVarTracker()->GetVar(var)); | 58 PpapiGlobals::Get()->GetVarTracker()->GetVar(var)); |
47 if (!var_object.get()) | 59 if (!var_object.get()) |
48 return scoped_refptr<NPObjectVar>(); | 60 return scoped_refptr<V8ObjectVar>(); |
49 return scoped_refptr<NPObjectVar>(var_object->AsNPObjectVar()); | 61 return scoped_refptr<V8ObjectVar>(var_object->AsV8ObjectVar()); |
50 } | 62 } |
51 | 63 |
52 } // namespace ppapi | 64 } // namespace ppapi |
OLD | NEW |