OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |