[email protected] | 0a424af | 2012-01-10 19:24:28 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ |
| 6 | #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ |
| 7 | |
[email protected] | 98ad978 | 2012-08-22 04:06:22 | [diff] [blame] | 8 | #include <string> |
| 9 | |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 10 | #include "ppapi/c/pp_instance.h" |
| 11 | #include "ppapi/c/pp_resource.h" |
[email protected] | 3b98ced7 | 2012-03-09 02:08:33 | [diff] [blame] | 12 | #include "ppapi/c/pp_time.h" |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 13 | #include "ppapi/c/pp_var.h" |
| 14 | #include "ppapi/proxy/interface_proxy.h" |
[email protected] | 47a961c | 2012-07-13 19:18:52 | [diff] [blame] | 15 | #include "ppapi/proxy/proxy_completion_callback_factory.h" |
[email protected] | be0a84b | 2011-08-13 04:18:44 | [diff] [blame] | 16 | #include "ppapi/shared_impl/host_resource.h" |
[email protected] | 9a57839 | 2011-12-07 18:59:27 | [diff] [blame] | 17 | #include "ppapi/shared_impl/ppb_instance_shared.h" |
[email protected] | ceadc39 | 2011-06-15 23:04:24 | [diff] [blame] | 18 | #include "ppapi/thunk/ppb_instance_api.h" |
[email protected] | ae5ff9ae | 2012-01-06 22:50:33 | [diff] [blame] | 19 | #include "ppapi/utility/completion_callback_factory.h" |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 20 | |
[email protected] | 0f41c01 | 2011-10-21 19:49:20 | [diff] [blame] | 21 | // Windows headers interfere with this file. |
| 22 | #ifdef PostMessage |
| 23 | #undef PostMessage |
| 24 | #endif |
| 25 | |
[email protected] | 98ad978 | 2012-08-22 04:06:22 | [diff] [blame] | 26 | struct PP_DecryptedBlockInfo; |
[email protected] | 181d9c1 | 2012-10-03 22:53:48 | [diff] [blame] | 27 | struct PP_DecryptedFrameInfo; |
[email protected] | 98ad978 | 2012-08-22 04:06:22 | [diff] [blame] | 28 | |
[email protected] | 4d2efd2 | 2011-08-18 21:58:02 | [diff] [blame] | 29 | namespace ppapi { |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 30 | namespace proxy { |
| 31 | |
| 32 | class SerializedVarReceiveInput; |
| 33 | class SerializedVarOutParam; |
| 34 | class SerializedVarReturnValue; |
| 35 | |
[email protected] | ceadc39 | 2011-06-15 23:04:24 | [diff] [blame] | 36 | class PPB_Instance_Proxy : public InterfaceProxy, |
[email protected] | a9b16dd | 2012-01-31 05:00:26 | [diff] [blame] | 37 | public PPB_Instance_Shared { |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 38 | public: |
[email protected] | 5c96602 | 2011-09-13 18:09:37 | [diff] [blame] | 39 | PPB_Instance_Proxy(Dispatcher* dispatcher); |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 40 | virtual ~PPB_Instance_Proxy(); |
| 41 | |
[email protected] | ceadc39 | 2011-06-15 23:04:24 | [diff] [blame] | 42 | static const Info* GetInfoPrivate(); |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 43 | |
| 44 | // InterfaceProxy implementation. |
[email protected] | a95986a8 | 2010-12-24 06:19:28 | [diff] [blame] | 45 | virtual bool OnMessageReceived(const IPC::Message& msg); |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 46 | |
[email protected] | 4f200612 | 2012-04-30 05:13:17 | [diff] [blame] | 47 | // PPB_Instance_API implementation. |
[email protected] | ceadc39 | 2011-06-15 23:04:24 | [diff] [blame] | 48 | virtual PP_Bool BindGraphics(PP_Instance instance, |
| 49 | PP_Resource device) OVERRIDE; |
| 50 | virtual PP_Bool IsFullFrame(PP_Instance instance) OVERRIDE; |
[email protected] | e8f07ac | 2012-01-03 17:43:36 | [diff] [blame] | 51 | virtual const ViewData* GetViewData(PP_Instance instance) OVERRIDE; |
[email protected] | ceadc39 | 2011-06-15 23:04:24 | [diff] [blame] | 52 | virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE; |
| 53 | virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; |
| 54 | virtual PP_Var ExecuteScript(PP_Instance instance, |
| 55 | PP_Var script, |
| 56 | PP_Var* exception) OVERRIDE; |
[email protected] | c59ed589 | 2012-02-18 01:10:19 | [diff] [blame] | 57 | virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) |
| 58 | OVERRIDE; |
| 59 | virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) |
| 60 | OVERRIDE; |
[email protected] | 8d770e49 | 2011-10-11 04:54:31 | [diff] [blame] | 61 | virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; |
[email protected] | 59cf702 | 2011-09-14 22:44:19 | [diff] [blame] | 62 | virtual void NumberOfFindResultsChanged(PP_Instance instance, |
| 63 | int32_t total, |
| 64 | PP_Bool final_result) OVERRIDE; |
| 65 | virtual void SelectedFindResultChanged(PP_Instance instance, |
| 66 | int32_t index) OVERRIDE; |
[email protected] | 7a26d92e | 2012-02-17 20:15:25 | [diff] [blame] | 67 | virtual PP_Var GetFontFamilies(PP_Instance instance) OVERRIDE; |
[email protected] | 06e0a34 | 2011-09-27 04:24:30 | [diff] [blame] | 68 | virtual PP_Bool SetFullscreen(PP_Instance instance, |
[email protected] | 3b98ced7 | 2012-03-09 02:08:33 | [diff] [blame] | 69 | PP_Bool fullscreen) OVERRIDE; |
[email protected] | 06e0a34 | 2011-09-27 04:24:30 | [diff] [blame] | 70 | virtual PP_Bool GetScreenSize(PP_Instance instance, |
[email protected] | a085aed7 | 2012-04-24 05:32:04 | [diff] [blame] | 71 | PP_Size* size) OVERRIDE; |
| 72 | virtual thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; |
[email protected] | 11d0c36 | 2012-10-11 02:02:11 | [diff] [blame] | 73 | virtual thunk::PPB_Flash_Functions_API* GetFlashFunctionsAPI( |
| 74 | PP_Instance instance) OVERRIDE; |
[email protected] | f511881 | 2012-08-24 19:54:30 | [diff] [blame] | 75 | virtual thunk::PPB_Gamepad_API* GetGamepadAPI(PP_Instance instance) OVERRIDE; |
[email protected] | 493d1421 | 2011-07-07 15:38:48 | [diff] [blame] | 76 | virtual int32_t RequestInputEvents(PP_Instance instance, |
| 77 | uint32_t event_classes) OVERRIDE; |
| 78 | virtual int32_t RequestFilteringInputEvents(PP_Instance instance, |
| 79 | uint32_t event_classes) OVERRIDE; |
| 80 | virtual void ClearInputEventRequest(PP_Instance instance, |
| 81 | uint32_t event_classes) OVERRIDE; |
[email protected] | 3b98ced7 | 2012-03-09 02:08:33 | [diff] [blame] | 82 | virtual void ClosePendingUserGesture(PP_Instance instance, |
| 83 | PP_TimeTicks timestamp) OVERRIDE; |
[email protected] | 55a5a52 | 2011-07-06 22:52:40 | [diff] [blame] | 84 | virtual void ZoomChanged(PP_Instance instance, double factor) OVERRIDE; |
| 85 | virtual void ZoomLimitsChanged(PP_Instance instance, |
| 86 | double minimum_factor, |
| 87 | double maximium_factor) OVERRIDE; |
[email protected] | c962f86 | 2012-04-12 00:02:04 | [diff] [blame] | 88 | virtual void PostMessage(PP_Instance instance, PP_Var message) OVERRIDE; |
| 89 | virtual PP_Bool SetCursor(PP_Instance instance, |
| 90 | PP_MouseCursor_Type type, |
| 91 | PP_Resource image, |
| 92 | const PP_Point* hot_spot) OVERRIDE; |
| 93 | virtual int32_t LockMouse(PP_Instance instance, |
[email protected] | aed9653 | 2012-06-23 14:27:42 | [diff] [blame] | 94 | scoped_refptr<TrackedCallback> callback) OVERRIDE; |
[email protected] | c962f86 | 2012-04-12 00:02:04 | [diff] [blame] | 95 | virtual void UnlockMouse(PP_Instance instance) OVERRIDE; |
[email protected] | 4c44183a | 2012-04-27 16:52:23 | [diff] [blame] | 96 | virtual void SetTextInputType(PP_Instance instance, |
| 97 | PP_TextInput_Type type) OVERRIDE; |
| 98 | virtual void UpdateCaretPosition(PP_Instance instance, |
| 99 | const PP_Rect& caret, |
| 100 | const PP_Rect& bounding_box) OVERRIDE; |
| 101 | virtual void CancelCompositionText(PP_Instance instance) OVERRIDE; |
| 102 | virtual void SelectionChanged(PP_Instance instance) OVERRIDE; |
| 103 | virtual void UpdateSurroundingText(PP_Instance instance, |
| 104 | const char* text, |
| 105 | uint32_t caret, |
| 106 | uint32_t anchor) OVERRIDE; |
[email protected] | 32938de | 2012-10-19 18:42:32 | [diff] [blame^] | 107 | virtual PP_Var GetDocumentURL(PP_Instance instance, |
| 108 | PP_URLComponents_Dev* components) OVERRIDE; |
[email protected] | c962f86 | 2012-04-12 00:02:04 | [diff] [blame] | 109 | #if !defined(OS_NACL) |
[email protected] | 0346023 | 2011-10-10 17:23:57 | [diff] [blame] | 110 | virtual PP_Var ResolveRelativeToDocument( |
| 111 | PP_Instance instance, |
| 112 | PP_Var relative, |
| 113 | PP_URLComponents_Dev* components) OVERRIDE; |
| 114 | virtual PP_Bool DocumentCanRequest(PP_Instance instance, PP_Var url) OVERRIDE; |
| 115 | virtual PP_Bool DocumentCanAccessDocument(PP_Instance instance, |
| 116 | PP_Instance target) OVERRIDE; |
[email protected] | 0346023 | 2011-10-10 17:23:57 | [diff] [blame] | 117 | virtual PP_Var GetPluginInstanceURL( |
| 118 | PP_Instance instance, |
| 119 | PP_URLComponents_Dev* components) OVERRIDE; |
[email protected] | e5aeef0 | 2012-08-17 00:18:43 | [diff] [blame] | 120 | virtual void NeedKey(PP_Instance instance, |
| 121 | PP_Var key_system, |
| 122 | PP_Var session_id, |
| 123 | PP_Var init_data) OVERRIDE; |
| 124 | virtual void KeyAdded(PP_Instance instance, |
| 125 | PP_Var key_system, |
| 126 | PP_Var session_id) OVERRIDE; |
| 127 | virtual void KeyMessage(PP_Instance instance, |
| 128 | PP_Var key_system, |
| 129 | PP_Var session_id, |
| 130 | PP_Resource message, |
| 131 | PP_Var default_url) OVERRIDE; |
| 132 | virtual void KeyError(PP_Instance instance, |
| 133 | PP_Var key_system, |
| 134 | PP_Var session_id, |
| 135 | int32_t media_error, |
| 136 | int32_t system_code) OVERRIDE; |
| 137 | virtual void DeliverBlock(PP_Instance instance, |
| 138 | PP_Resource decrypted_block, |
[email protected] | 98ad978 | 2012-08-22 04:06:22 | [diff] [blame] | 139 | const PP_DecryptedBlockInfo* block_info) OVERRIDE; |
[email protected] | e9d3a102 | 2012-10-11 23:43:55 | [diff] [blame] | 140 | virtual void DecoderInitialized(PP_Instance instance, |
| 141 | PP_Bool success, |
| 142 | uint32_t request_id) OVERRIDE; |
[email protected] | 23de8745 | 2012-10-12 07:03:09 | [diff] [blame] | 143 | virtual void DecoderDeinitializeDone(PP_Instance instance, |
| 144 | PP_DecryptorStreamType decoder_type, |
| 145 | uint32_t request_id) OVERRIDE; |
| 146 | virtual void DecoderResetDone(PP_Instance instance, |
| 147 | PP_DecryptorStreamType decoder_type, |
| 148 | uint32_t request_id) OVERRIDE; |
[email protected] | e5aeef0 | 2012-08-17 00:18:43 | [diff] [blame] | 149 | virtual void DeliverFrame(PP_Instance instance, |
| 150 | PP_Resource decrypted_frame, |
[email protected] | 181d9c1 | 2012-10-03 22:53:48 | [diff] [blame] | 151 | const PP_DecryptedFrameInfo* frame_info) OVERRIDE; |
[email protected] | e5aeef0 | 2012-08-17 00:18:43 | [diff] [blame] | 152 | virtual void DeliverSamples(PP_Instance instance, |
| 153 | PP_Resource decrypted_samples, |
[email protected] | 98ad978 | 2012-08-22 04:06:22 | [diff] [blame] | 154 | const PP_DecryptedBlockInfo* block_info) OVERRIDE; |
[email protected] | c962f86 | 2012-04-12 00:02:04 | [diff] [blame] | 155 | #endif // !defined(OS_NACL) |
[email protected] | ceadc39 | 2011-06-15 23:04:24 | [diff] [blame] | 156 | |
[email protected] | ac4b54d | 2011-10-20 23:09:28 | [diff] [blame] | 157 | static const ApiID kApiID = API_ID_PPB_INSTANCE; |
[email protected] | 5c96602 | 2011-09-13 18:09:37 | [diff] [blame] | 158 | |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 159 | private: |
[email protected] | 0f41c01 | 2011-10-21 19:49:20 | [diff] [blame] | 160 | // Plugin -> Host message handlers. |
[email protected] | e8f07ac | 2012-01-03 17:43:36 | [diff] [blame] | 161 | void OnHostMsgGetWindowObject(PP_Instance instance, |
| 162 | SerializedVarReturnValue result); |
| 163 | void OnHostMsgGetOwnerElementObject(PP_Instance instance, |
[email protected] | 0346023 | 2011-10-10 17:23:57 | [diff] [blame] | 164 | SerializedVarReturnValue result); |
[email protected] | e8f07ac | 2012-01-03 17:43:36 | [diff] [blame] | 165 | void OnHostMsgBindGraphics(PP_Instance instance, |
| 166 | const ppapi::HostResource& device, |
| 167 | PP_Bool* result); |
| 168 | void OnHostMsgIsFullFrame(PP_Instance instance, PP_Bool* result); |
| 169 | void OnHostMsgExecuteScript(PP_Instance instance, |
| 170 | SerializedVarReceiveInput script, |
| 171 | SerializedVarOutParam out_exception, |
| 172 | SerializedVarReturnValue result); |
[email protected] | c59ed589 | 2012-02-18 01:10:19 | [diff] [blame] | 173 | void OnHostMsgGetAudioHardwareOutputSampleRate(PP_Instance instance, |
| 174 | uint32_t *result); |
| 175 | void OnHostMsgGetAudioHardwareOutputBufferSize(PP_Instance instance, |
| 176 | uint32_t *result); |
[email protected] | e8f07ac | 2012-01-03 17:43:36 | [diff] [blame] | 177 | void OnHostMsgGetDefaultCharSet(PP_Instance instance, |
| 178 | SerializedVarReturnValue result); |
[email protected] | e8f07ac | 2012-01-03 17:43:36 | [diff] [blame] | 179 | void OnHostMsgSetFullscreen(PP_Instance instance, |
| 180 | PP_Bool fullscreen, |
| 181 | PP_Bool* result); |
| 182 | void OnHostMsgGetScreenSize(PP_Instance instance, |
| 183 | PP_Bool* result, |
| 184 | PP_Size* size); |
[email protected] | e8f07ac | 2012-01-03 17:43:36 | [diff] [blame] | 185 | void OnHostMsgRequestInputEvents(PP_Instance instance, |
| 186 | bool is_filtering, |
| 187 | uint32_t event_classes); |
| 188 | void OnHostMsgClearInputEvents(PP_Instance instance, |
| 189 | uint32_t event_classes); |
[email protected] | 3b98ced7 | 2012-03-09 02:08:33 | [diff] [blame] | 190 | void OnMsgHandleInputEventAck(PP_Instance instance, |
| 191 | PP_TimeTicks timestamp); |
[email protected] | e8f07ac | 2012-01-03 17:43:36 | [diff] [blame] | 192 | void OnHostMsgPostMessage(PP_Instance instance, |
| 193 | SerializedVarReceiveInput message); |
| 194 | void OnHostMsgLockMouse(PP_Instance instance); |
| 195 | void OnHostMsgUnlockMouse(PP_Instance instance); |
[email protected] | c962f86 | 2012-04-12 00:02:04 | [diff] [blame] | 196 | void OnHostMsgSetCursor(PP_Instance instance, |
| 197 | int32_t type, |
| 198 | const ppapi::HostResource& custom_image, |
| 199 | const PP_Point& hot_spot); |
[email protected] | 4c44183a | 2012-04-27 16:52:23 | [diff] [blame] | 200 | void OnHostMsgSetTextInputType(PP_Instance instance, PP_TextInput_Type type); |
| 201 | void OnHostMsgUpdateCaretPosition(PP_Instance instance, |
| 202 | const PP_Rect& caret, |
| 203 | const PP_Rect& bounding_box); |
| 204 | void OnHostMsgCancelCompositionText(PP_Instance instance); |
| 205 | void OnHostMsgUpdateSurroundingText( |
| 206 | PP_Instance instance, |
| 207 | const std::string& text, |
| 208 | uint32_t caret, |
| 209 | uint32_t anchor); |
[email protected] | 32938de | 2012-10-19 18:42:32 | [diff] [blame^] | 210 | void OnHostMsgGetDocumentURL(PP_Instance instance, |
| 211 | PP_URLComponents_Dev* components, |
| 212 | SerializedVarReturnValue result); |
[email protected] | e5aeef0 | 2012-08-17 00:18:43 | [diff] [blame] | 213 | |
[email protected] | c962f86 | 2012-04-12 00:02:04 | [diff] [blame] | 214 | #if !defined(OS_NACL) |
[email protected] | e8f07ac | 2012-01-03 17:43:36 | [diff] [blame] | 215 | void OnHostMsgResolveRelativeToDocument(PP_Instance instance, |
| 216 | SerializedVarReceiveInput relative, |
| 217 | SerializedVarReturnValue result); |
| 218 | void OnHostMsgDocumentCanRequest(PP_Instance instance, |
| 219 | SerializedVarReceiveInput url, |
| 220 | PP_Bool* result); |
| 221 | void OnHostMsgDocumentCanAccessDocument(PP_Instance active, |
| 222 | PP_Instance target, |
| 223 | PP_Bool* result); |
[email protected] | e8f07ac | 2012-01-03 17:43:36 | [diff] [blame] | 224 | void OnHostMsgGetPluginInstanceURL(PP_Instance instance, |
| 225 | SerializedVarReturnValue result); |
[email protected] | e5aeef0 | 2012-08-17 00:18:43 | [diff] [blame] | 226 | virtual void OnHostMsgNeedKey(PP_Instance instance, |
| 227 | SerializedVarReceiveInput key_system, |
| 228 | SerializedVarReceiveInput session_id, |
| 229 | SerializedVarReceiveInput init_data); |
| 230 | virtual void OnHostMsgKeyAdded(PP_Instance instance, |
| 231 | SerializedVarReceiveInput key_system, |
| 232 | SerializedVarReceiveInput session_id); |
| 233 | virtual void OnHostMsgKeyMessage(PP_Instance instance, |
| 234 | SerializedVarReceiveInput key_system, |
| 235 | SerializedVarReceiveInput session_id, |
| 236 | PP_Resource message, |
| 237 | SerializedVarReceiveInput default_url); |
| 238 | virtual void OnHostMsgKeyError(PP_Instance instance, |
| 239 | SerializedVarReceiveInput key_system, |
| 240 | SerializedVarReceiveInput session_id, |
| 241 | int32_t media_error, |
| 242 | int32_t system_code); |
[email protected] | e9d3a102 | 2012-10-11 23:43:55 | [diff] [blame] | 243 | virtual void OnHostMsgDecoderInitialized(PP_Instance instance, |
| 244 | PP_Bool success, |
| 245 | uint32_t request_id); |
[email protected] | 23de8745 | 2012-10-12 07:03:09 | [diff] [blame] | 246 | virtual void OnHostMsgDecoderDeinitializeDone( |
| 247 | PP_Instance instance, |
| 248 | PP_DecryptorStreamType decoder_type, |
| 249 | uint32_t request_id); |
| 250 | virtual void OnHostMsgDecoderResetDone(PP_Instance instance, |
| 251 | PP_DecryptorStreamType decoder_type, |
| 252 | uint32_t request_id); |
[email protected] | e5aeef0 | 2012-08-17 00:18:43 | [diff] [blame] | 253 | virtual void OnHostMsgDeliverBlock(PP_Instance instance, |
| 254 | PP_Resource decrypted_block, |
[email protected] | 98ad978 | 2012-08-22 04:06:22 | [diff] [blame] | 255 | const std::string& serialized_block_info); |
[email protected] | e5aeef0 | 2012-08-17 00:18:43 | [diff] [blame] | 256 | virtual void OnHostMsgDeliverFrame(PP_Instance instance, |
| 257 | PP_Resource decrypted_frame, |
[email protected] | 98ad978 | 2012-08-22 04:06:22 | [diff] [blame] | 258 | const std::string& serialized_block_info); |
| 259 | virtual void OnHostMsgDeliverSamples( |
| 260 | PP_Instance instance, |
| 261 | PP_Resource decrypted_samples, |
| 262 | const std::string& serialized_block_info); |
[email protected] | c962f86 | 2012-04-12 00:02:04 | [diff] [blame] | 263 | #endif // !defined(OS_NACL) |
[email protected] | 0f41c01 | 2011-10-21 19:49:20 | [diff] [blame] | 264 | |
| 265 | // Host -> Plugin message handlers. |
[email protected] | e8f07ac | 2012-01-03 17:43:36 | [diff] [blame] | 266 | void OnPluginMsgMouseLockComplete(PP_Instance instance, int32_t result); |
[email protected] | 0f41c01 | 2011-10-21 19:49:20 | [diff] [blame] | 267 | |
| 268 | void MouseLockCompleteInHost(int32_t result, PP_Instance instance); |
| 269 | |
[email protected] | a8e7214 | 2012-08-21 17:24:20 | [diff] [blame] | 270 | // Other helpers. |
| 271 | void CancelAnyPendingRequestSurroundingText(PP_Instance instance); |
| 272 | |
[email protected] | 47a961c | 2012-07-13 19:18:52 | [diff] [blame] | 273 | ProxyCompletionCallbackFactory<PPB_Instance_Proxy> callback_factory_; |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 274 | }; |
| 275 | |
| 276 | } // namespace proxy |
[email protected] | 4d2efd2 | 2011-08-18 21:58:02 | [diff] [blame] | 277 | } // namespace ppapi |
[email protected] | 4c2e935 | 2010-11-05 22:13:02 | [diff] [blame] | 278 | |
| 279 | #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ |