OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_PPB_FLASH_CLIPBOARD_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPB_FLASH_CLIPBOARD_PROXY_H_ |
6 #define PPAPI_PROXY_PPB_FLASH_CLIPBOARD_PROXY_H_ | 6 #define PPAPI_PROXY_PPB_FLASH_CLIPBOARD_PROXY_H_ |
7 | 7 |
8 #include "ppapi/c/pp_instance.h" | 8 #include "ppapi/c/pp_instance.h" |
9 #include "ppapi/proxy/interface_proxy.h" | 9 #include "ppapi/proxy/interface_proxy.h" |
10 | 10 |
11 struct PPB_Flash_Clipboard; | 11 struct PPB_Flash_Clipboard; |
12 | 12 |
13 namespace pp { | 13 namespace ppapi { |
14 namespace proxy { | 14 namespace proxy { |
15 | 15 |
16 class SerializedVarReceiveInput; | 16 class SerializedVarReceiveInput; |
17 class SerializedVarReturnValue; | 17 class SerializedVarReturnValue; |
18 | 18 |
19 class PPB_Flash_Clipboard_Proxy : public InterfaceProxy { | 19 class PPB_Flash_Clipboard_Proxy : public InterfaceProxy { |
20 public: | 20 public: |
21 PPB_Flash_Clipboard_Proxy(Dispatcher* dispatcher, | 21 PPB_Flash_Clipboard_Proxy(Dispatcher* dispatcher, |
22 const void* target_interface); | 22 const void* target_interface); |
23 virtual ~PPB_Flash_Clipboard_Proxy(); | 23 virtual ~PPB_Flash_Clipboard_Proxy(); |
(...skipping 15 matching lines...) Expand all Loading... |
39 bool* result); | 39 bool* result); |
40 void OnMsgReadPlainText(PP_Instance instance_id, | 40 void OnMsgReadPlainText(PP_Instance instance_id, |
41 int clipboard_type, | 41 int clipboard_type, |
42 SerializedVarReturnValue result); | 42 SerializedVarReturnValue result); |
43 void OnMsgWritePlainText(PP_Instance instance_id, | 43 void OnMsgWritePlainText(PP_Instance instance_id, |
44 int clipboard_type, | 44 int clipboard_type, |
45 SerializedVarReceiveInput text); | 45 SerializedVarReceiveInput text); |
46 }; | 46 }; |
47 | 47 |
48 } // namespace proxy | 48 } // namespace proxy |
49 } // namespace pp | 49 } // namespace ppapi |
50 | 50 |
51 #endif // PPAPI_PROXY_PPB_FLASH_CLIPBOARD_PROXY_H_ | 51 #endif // PPAPI_PROXY_PPB_FLASH_CLIPBOARD_PROXY_H_ |
OLD | NEW |