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

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

Issue 10984094: Hook up PpapiPermissions in more places. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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/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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 protected: 43 protected:
44 virtual ~SyncMessageStatusReceiver() {} 44 virtual ~SyncMessageStatusReceiver() {}
45 }; 45 };
46 46
47 // Constructor for the renderer side. This will take a reference to the 47 // Constructor for the renderer side. This will take a reference to the
48 // SyncMessageStatusReceiver. 48 // SyncMessageStatusReceiver.
49 // 49 //
50 // You must call InitHostWithChannel after the constructor. 50 // You must call InitHostWithChannel after the constructor.
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 ~HostDispatcher(); 55 ~HostDispatcher();
55 56
56 // 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.
57 // The delegate pointer must outlive this class, ownership is not 58 // The delegate pointer must outlive this class, ownership is not
58 // transferred. 59 // transferred.
59 virtual bool InitHostWithChannel(Delegate* delegate, 60 virtual bool InitHostWithChannel(Delegate* delegate,
60 const IPC::ChannelHandle& channel_handle, 61 const IPC::ChannelHandle& channel_handle,
61 bool is_client, 62 bool is_client,
62 const Preferences& preferences); 63 const Preferences& preferences);
63 64
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 private: 146 private:
146 HostDispatcher* dispatcher_; 147 HostDispatcher* dispatcher_;
147 148
148 DISALLOW_COPY_AND_ASSIGN(ScopedModuleReference); 149 DISALLOW_COPY_AND_ASSIGN(ScopedModuleReference);
149 }; 150 };
150 151
151 } // namespace proxy 152 } // namespace proxy
152 } // namespace ppapi 153 } // namespace ppapi
153 154
154 #endif // PPAPI_PROXY_HOST_DISPATCHER_H_ 155 #endif // PPAPI_PROXY_HOST_DISPATCHER_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/dispatcher.cc ('k') | ppapi/proxy/host_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698