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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 const ppapi::HostResource& host_resource, | 171 const ppapi::HostResource& host_resource, |
172 int32_t mode, | 172 int32_t mode, |
173 IPC::PlatformFileForTransit* file_handle, | 173 IPC::PlatformFileForTransit* file_handle, |
174 int32_t* result); | 174 int32_t* result); |
175 void OnHostMsgQueryFileRef(PP_Instance instance, | 175 void OnHostMsgQueryFileRef(PP_Instance instance, |
176 const ppapi::HostResource& host_resource, | 176 const ppapi::HostResource& host_resource, |
177 PP_FileInfo* info, | 177 PP_FileInfo* info, |
178 int32_t* result); | 178 int32_t* result); |
179 void OnHostMsgGetDeviceID(PP_Instance instance, | 179 void OnHostMsgGetDeviceID(PP_Instance instance, |
180 SerializedVarReturnValue id); | 180 SerializedVarReturnValue id); |
| 181 void OnHostMsgGetSetting(PP_Instance instance, |
| 182 PP_FlashSetting setting, |
| 183 SerializedVarReturnValue result); |
181 void OnHostMsgInvokePrinting(PP_Instance instance); | 184 void OnHostMsgInvokePrinting(PP_Instance instance); |
182 | 185 |
183 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); | 186 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Proxy); |
184 }; | 187 }; |
185 | 188 |
186 } // namespace proxy | 189 } // namespace proxy |
187 } // namespace ppapi | 190 } // namespace ppapi |
188 | 191 |
189 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ | 192 #endif // PPAPI_PROXY_PPB_FLASH_PROXY_H_ |
OLD | NEW |