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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/pepper/pepper_plugin_instance_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_RENDERER_PEPPER_HOST_VAR_TRACKER_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_HOST_VAR_TRACKER_H_
6 #define CONTENT_RENDERER_PEPPER_HOST_VAR_TRACKER_H_ 6 #define CONTENT_RENDERER_PEPPER_HOST_VAR_TRACKER_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/containers/hash_tables.h" 12 #include "base/containers/hash_tables.h"
13 #include "base/gtest_prod_util.h" 13 #include "base/gtest_prod_util.h"
14 #include "base/memory/linked_ptr.h" 14 #include "base/memory/linked_ptr.h"
15 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
16 #include "content/common/content_export.h" 16 #include "content/common/content_export.h"
17 #include "ppapi/c/pp_instance.h" 17 #include "ppapi/c/pp_instance.h"
18 #include "ppapi/shared_impl/host_resource.h" 18 #include "ppapi/shared_impl/host_resource.h"
19 #include "ppapi/shared_impl/resource_tracker.h" 19 #include "ppapi/shared_impl/resource_tracker.h"
20 #include "ppapi/shared_impl/var_tracker.h" 20 #include "ppapi/shared_impl/var_tracker.h"
21 #include "v8/include/v8.h"
21 22
22 typedef struct NPObject NPObject; 23 typedef struct NPObject NPObject;
23 24
24 namespace ppapi { 25 namespace ppapi {
25 class ArrayBufferVar; 26 class ArrayBufferVar;
26 class NPObjectVar; 27 class NPObjectVar;
28 class V8ObjectVar;
27 class Var; 29 class Var;
28 } 30 }
29 31
30 namespace content { 32 namespace content {
31 33
32 // Adds NPObject var tracking to the standard PPAPI VarTracker for use in the 34 // Adds NPObject var tracking to the standard PPAPI VarTracker for use in the
33 // renderer. 35 // renderer.
34 class HostVarTracker : public ppapi::VarTracker { 36 class HostVarTracker : public ppapi::VarTracker {
35 public: 37 public:
36 HostVarTracker(); 38 HostVarTracker();
37 virtual ~HostVarTracker(); 39 virtual ~HostVarTracker();
38 40
39 // Tracks all live NPObjectVar. This is so we can map between instance + 41 // Tracks all live NPObjectVar. This is so we can map between instance +
40 // NPObject and get the NPObjectVar corresponding to it. This Add/Remove 42 // NPObject and get the NPObjectVar corresponding to it. This Add/Remove
41 // function is called by the NPObjectVar when it is created and 43 // function is called by the NPObjectVar when it is created and
42 // destroyed. 44 // destroyed.
43 void AddNPObjectVar(ppapi::NPObjectVar* object_var); 45 void AddNPObjectVar(ppapi::NPObjectVar* object_var);
44 void RemoveNPObjectVar(ppapi::NPObjectVar* object_var); 46 void RemoveNPObjectVar(ppapi::NPObjectVar* object_var);
45 47
46 // Looks up a previously registered NPObjectVar for the given NPObject and 48 // Looks up a previously registered NPObjectVar for the given NPObject and
47 // instance. Returns NULL if there is no NPObjectVar corresponding to the 49 // instance. Returns NULL if there is no NPObjectVar corresponding to the
48 // given NPObject for the given instance. See AddNPObjectVar above. 50 // given NPObject for the given instance. See AddNPObjectVar above.
49 ppapi::NPObjectVar* NPObjectVarForNPObject(PP_Instance instance, 51 ppapi::NPObjectVar* NPObjectVarForNPObject(PP_Instance instance,
50 NPObject* np_object); 52 NPObject* np_object);
51 53
52 // Returns the number of NPObjectVar's associated with the given instance. 54 // Returns the number of NPObjectVar's associated with the given instance.
53 // Returns 0 if the instance isn't known. 55 // Returns 0 if the instance isn't known.
54 CONTENT_EXPORT int GetLiveNPObjectVarsForInstance(PP_Instance instance) const; 56 CONTENT_EXPORT int GetLiveNPObjectVarsForInstance(PP_Instance instance) const;
55 57
58 // Tracks all live V8ObjectVar. This is so we can map between instance +
59 // V8Object and get the V8ObjectVar corresponding to it. This Add/Remove
60 // function is called by the V8ObjectVar when it is created and destroyed.
61 void AddV8ObjectVar(ppapi::V8ObjectVar* object_var) { NOTIMPLEMENTED(); }
62 void RemoveV8ObjectVar(ppapi::V8ObjectVar* object_var) { NOTIMPLEMENTED(); }
63 // Creates or retrieves a V8ObjectVar.
64 PP_Var V8ObjectVarForV8Object(PP_Instance instance,
65 v8::Handle<v8::Object> object) {
66 NOTIMPLEMENTED();
67 return PP_MakeUndefined();
68 }
69
56 // VarTracker public implementation. 70 // VarTracker public implementation.
57 virtual PP_Var MakeResourcePPVarFromMessage( 71 virtual PP_Var MakeResourcePPVarFromMessage(
58 PP_Instance instance, 72 PP_Instance instance,
59 const IPC::Message& creation_message, 73 const IPC::Message& creation_message,
60 int pending_renderer_id, 74 int pending_renderer_id,
61 int pending_browser_id) OVERRIDE; 75 int pending_browser_id) OVERRIDE;
62 virtual ppapi::ResourceVar* MakeResourceVar(PP_Resource pp_resource) OVERRIDE; 76 virtual ppapi::ResourceVar* MakeResourceVar(PP_Resource pp_resource) OVERRIDE;
63 virtual void DidDeleteInstance(PP_Instance instance) OVERRIDE; 77 virtual void DidDeleteInstance(PP_Instance instance) OVERRIDE;
64 78
65 virtual int TrackSharedMemoryHandle(PP_Instance instance, 79 virtual int TrackSharedMemoryHandle(PP_Instance instance,
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 typedef std::map<int, SharedMemoryMapEntry> SharedMemoryMap; 118 typedef std::map<int, SharedMemoryMapEntry> SharedMemoryMap;
105 SharedMemoryMap shared_memory_map_; 119 SharedMemoryMap shared_memory_map_;
106 uint32_t last_shared_memory_map_id_; 120 uint32_t last_shared_memory_map_id_;
107 121
108 DISALLOW_COPY_AND_ASSIGN(HostVarTracker); 122 DISALLOW_COPY_AND_ASSIGN(HostVarTracker);
109 }; 123 };
110 124
111 } // namespace content 125 } // namespace content
112 126
113 #endif // CONTENT_RENDERER_PEPPER_HOST_VAR_TRACKER_H_ 127 #endif // CONTENT_RENDERER_PEPPER_HOST_VAR_TRACKER_H_
OLDNEW
« 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