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 #include "ppapi/thunk/ppb_flash_clipboard_api.h" | 10 #include "ppapi/thunk/ppb_flash_clipboard_api.h" |
11 | 11 |
12 struct PPB_Flash_Clipboard; | |
13 | |
14 namespace ppapi { | 12 namespace ppapi { |
15 namespace proxy { | 13 namespace proxy { |
16 | 14 |
17 class SerializedVarReceiveInput; | 15 class SerializedVarReceiveInput; |
18 class SerializedVarReturnValue; | 16 class SerializedVarReturnValue; |
19 | 17 |
20 class PPB_Flash_Clipboard_Proxy | 18 class PPB_Flash_Clipboard_Proxy |
21 : public InterfaceProxy, | 19 : public InterfaceProxy, |
22 public thunk::PPB_Flash_Clipboard_FunctionAPI { | 20 public thunk::PPB_Flash_Clipboard_FunctionAPI { |
23 public: | 21 public: |
(...skipping 30 matching lines...) Expand all Loading... |
54 SerializedVarReturnValue result); | 52 SerializedVarReturnValue result); |
55 void OnMsgWritePlainText(PP_Instance instance, | 53 void OnMsgWritePlainText(PP_Instance instance, |
56 int clipboard_type, | 54 int clipboard_type, |
57 SerializedVarReceiveInput text); | 55 SerializedVarReceiveInput text); |
58 }; | 56 }; |
59 | 57 |
60 } // namespace proxy | 58 } // namespace proxy |
61 } // namespace ppapi | 59 } // namespace ppapi |
62 | 60 |
63 #endif // PPAPI_PROXY_PPB_FLASH_CLIPBOARD_PROXY_H_ | 61 #endif // PPAPI_PROXY_PPB_FLASH_CLIPBOARD_PROXY_H_ |
OLD | NEW |