OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef PPAPI_THUNK_PPB_FLASH_CLIPBOARD_API_H_ | |
6 #define PPAPI_THUNK_PPB_FLASH_CLIPBOARD_API_H_ | |
7 | |
8 #include "ppapi/c/private/ppb_flash_clipboard.h" | |
9 #include "ppapi/thunk/ppapi_thunk_export.h" | |
10 | |
11 namespace ppapi { | |
12 namespace thunk { | |
13 | |
14 class PPAPI_THUNK_EXPORT PPB_Flash_Clipboard_API { | |
yzshen1
2012/10/29 17:58:04
Do you need to export it?
raymes
2012/10/29 18:44:58
Done.
| |
15 public: | |
16 virtual ~PPB_Flash_Clipboard_API() {} | |
17 | |
18 // PPB_Flash_Clipboard. | |
19 virtual uint32_t RegisterCustomFormat( | |
20 PP_Instance instance, | |
yzshen1
2012/10/29 17:58:04
wrong indent. (The whole class)
raymes
2012/10/29 18:44:58
Done.
| |
21 const char* format_name) = 0; | |
22 virtual PP_Bool IsFormatAvailable( | |
23 PP_Instance instance, | |
24 PP_Flash_Clipboard_Type clipboard_type, | |
25 uint32_t format) = 0; | |
26 virtual PP_Var ReadData( | |
27 PP_Instance instance, | |
28 PP_Flash_Clipboard_Type clipboard_type, | |
29 uint32_t format) = 0; | |
30 virtual int32_t WriteData( | |
31 PP_Instance instance, | |
32 PP_Flash_Clipboard_Type clipboard_type, | |
33 uint32_t data_item_count, | |
34 const uint32_t formats[], | |
35 const PP_Var data_items[]) = 0; | |
36 }; | |
37 | |
38 } // namespace thunk | |
39 } // namespace ppapi | |
40 | |
41 #endif // PPAPI_THUNK_PPB_FLASH_CLIPBOARD_API_H_ | |
OLD | NEW |