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_PPB_FLASH_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPB_FLASH_PROXY_H_ |
6 #define PPAPI_PROXY_PPB_FLASH_PROXY_H_ | 6 #define PPAPI_PROXY_PPB_FLASH_PROXY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 PP_Flash_Clipboard_Type clipboard_type, | 79 PP_Flash_Clipboard_Type clipboard_type, |
80 PP_Flash_Clipboard_Format format) OVERRIDE; | 80 PP_Flash_Clipboard_Format format) OVERRIDE; |
81 virtual PP_Var ReadClipboardData(PP_Instance instance, | 81 virtual PP_Var ReadClipboardData(PP_Instance instance, |
82 PP_Flash_Clipboard_Type clipboard_type, | 82 PP_Flash_Clipboard_Type clipboard_type, |
83 PP_Flash_Clipboard_Format format) OVERRIDE; | 83 PP_Flash_Clipboard_Format format) OVERRIDE; |
84 virtual int32_t WriteClipboardData(PP_Instance instance, | 84 virtual int32_t WriteClipboardData(PP_Instance instance, |
85 PP_Flash_Clipboard_Type clipboard_type, | 85 PP_Flash_Clipboard_Type clipboard_type, |
86 uint32_t data_item_count, | 86 uint32_t data_item_count, |
87 const PP_Flash_Clipboard_Format formats[], | 87 const PP_Flash_Clipboard_Format formats[], |
88 const PP_Var data_items[]) OVERRIDE; | 88 const PP_Var data_items[]) OVERRIDE; |
89 virtual bool CreateThreadAdapterForInstance(PP_Instance instance) OVERRIDE; | |
90 virtual void ClearThreadAdapterForInstance(PP_Instance instance) OVERRIDE; | |
91 virtual int32_t OpenFile(PP_Instance instance, | 89 virtual int32_t OpenFile(PP_Instance instance, |
92 const char* path, | 90 const char* path, |
93 int32_t mode, | 91 int32_t mode, |
94 PP_FileHandle* file) OVERRIDE; | 92 PP_FileHandle* file) OVERRIDE; |
95 virtual int32_t RenameFile(PP_Instance instance, | 93 virtual int32_t RenameFile(PP_Instance instance, |
96 const char* path_from, | 94 const char* path_from, |
97 const char* path_to) OVERRIDE; | 95 const char* path_to) OVERRIDE; |
98 virtual int32_t DeleteFileOrDir(PP_Instance instance, | 96 virtual int32_t DeleteFileOrDir(PP_Instance instance, |
99 const char* path, | 97 const char* path, |
100 PP_Bool recursive) OVERRIDE; | 98 PP_Bool recursive) OVERRIDE; |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 SerializedVarReturnValue id); | 171 SerializedVarReturnValue id); |
174 void OnHostMsgInvokePrinting(PP_Instance instance); | 172 void OnHostMsgInvokePrinting(PP_Instance instance); |
175 | 173 |
176 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); | 174 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); |
177 }; | 175 }; |
178 | 176 |
179 } // namespace proxy | 177 } // namespace proxy |
180 } // namespace ppapi | 178 } // namespace ppapi |
181 | 179 |
182 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ | 180 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ |
OLD | NEW |