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

Side by Side Diff: ppapi/proxy/host_dispatcher.h

Issue 11722017: Use an explicit PID for duplicating Pepper handles rather than the Channel's. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | « ppapi/proxy/broker_dispatcher.cc ('k') | ppapi/proxy/host_dispatcher.cc » ('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 PPAPI_PROXY_HOST_DISPATCHER_H_ 5 #ifndef PPAPI_PROXY_HOST_DISPATCHER_H_
6 #define PPAPI_PROXY_HOST_DISPATCHER_H_ 6 #define PPAPI_PROXY_HOST_DISPATCHER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 HostDispatcher(PP_Module module, 51 HostDispatcher(PP_Module module,
52 PP_GetInterface_Func local_get_interface, 52 PP_GetInterface_Func local_get_interface,
53 SyncMessageStatusReceiver* sync_status, 53 SyncMessageStatusReceiver* sync_status,
54 const PpapiPermissions& permissions); 54 const PpapiPermissions& permissions);
55 ~HostDispatcher(); 55 ~HostDispatcher();
56 56
57 // You must call this function before anything else. Returns true on success. 57 // You must call this function before anything else. Returns true on success.
58 // The delegate pointer must outlive this class, ownership is not 58 // The delegate pointer must outlive this class, ownership is not
59 // transferred. 59 // transferred.
60 virtual bool InitHostWithChannel(Delegate* delegate, 60 virtual bool InitHostWithChannel(Delegate* delegate,
61 base::ProcessId peer_pid,
61 const IPC::ChannelHandle& channel_handle, 62 const IPC::ChannelHandle& channel_handle,
62 bool is_client, 63 bool is_client,
63 const Preferences& preferences); 64 const Preferences& preferences);
64 65
65 // The host side maintains a mapping from PP_Instance to Dispatcher so 66 // The host side maintains a mapping from PP_Instance to Dispatcher so
66 // that we can send the messages to the right channel. 67 // that we can send the messages to the right channel.
67 static HostDispatcher* GetForInstance(PP_Instance instance); 68 static HostDispatcher* GetForInstance(PP_Instance instance);
68 static void SetForInstance(PP_Instance instance, 69 static void SetForInstance(PP_Instance instance,
69 HostDispatcher* dispatcher); 70 HostDispatcher* dispatcher);
70 static void RemoveForInstance(PP_Instance instance); 71 static void RemoveForInstance(PP_Instance instance);
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 private: 147 private:
147 HostDispatcher* dispatcher_; 148 HostDispatcher* dispatcher_;
148 149
149 DISALLOW_COPY_AND_ASSIGN(ScopedModuleReference); 150 DISALLOW_COPY_AND_ASSIGN(ScopedModuleReference);
150 }; 151 };
151 152
152 } // namespace proxy 153 } // namespace proxy
153 } // namespace ppapi 154 } // namespace ppapi
154 155
155 #endif // PPAPI_PROXY_HOST_DISPATCHER_H_ 156 #endif // PPAPI_PROXY_HOST_DISPATCHER_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/broker_dispatcher.cc ('k') | ppapi/proxy/host_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698