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

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

Issue 6282007: First pass at making the proxy handle multiple renderers. This associates the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_DISPATCHER_H_ 5 #ifndef PPAPI_PROXY_DISPATCHER_H_
6 #define PPAPI_PROXY_DISPATCHER_H_ 6 #define PPAPI_PROXY_DISPATCHER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/linked_ptr.h" 12 #include "base/linked_ptr.h"
13 #include "base/process.h" 13 #include "base/process.h"
14 #include "base/scoped_ptr.h" 14 #include "base/scoped_ptr.h"
15 #include "ipc/ipc_channel.h" 15 #include "ipc/ipc_channel.h"
16 #include "ipc/ipc_channel_handle.h" 16 #include "ipc/ipc_channel_handle.h"
17 #include "ipc/ipc_message.h" 17 #include "ipc/ipc_message.h"
18 #include "ppapi/c/pp_module.h" 18 #include "ppapi/c/pp_module.h"
19 #include "ppapi/proxy/callback_tracker.h" 19 #include "ppapi/proxy/callback_tracker.h"
20 #include "ppapi/proxy/interface_id.h" 20 #include "ppapi/proxy/interface_id.h"
21 #include "ppapi/proxy/plugin_resource_tracker.h"
22 #include "ppapi/proxy/plugin_var_tracker.h" 21 #include "ppapi/proxy/plugin_var_tracker.h"
23 22
24 class MessageLoop; 23 class MessageLoop;
25 struct PPB_Var_Deprecated; 24 struct PPB_Var_Deprecated;
26 25
27 namespace base { 26 namespace base {
28 class WaitableEvent; 27 class WaitableEvent;
29 } 28 }
30 29
31 namespace IPC { 30 namespace IPC {
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 188
190 scoped_ptr<VarSerializationRules> serialization_rules_; 189 scoped_ptr<VarSerializationRules> serialization_rules_;
191 190
192 DISALLOW_COPY_AND_ASSIGN(Dispatcher); 191 DISALLOW_COPY_AND_ASSIGN(Dispatcher);
193 }; 192 };
194 193
195 } // namespace proxy 194 } // namespace proxy
196 } // namespace pp 195 } // namespace pp
197 196
198 #endif // PPAPI_PROXY_DISPATCHER_H_ 197 #endif // PPAPI_PROXY_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698