| 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_PPB_FLASH_PROXY_H_ | 5 #ifndef PPAPI_PPB_FLASH_PROXY_H_ |
| 6 #define PPAPI_PPB_FLASH_PROXY_H_ | 6 #define PPAPI_PPB_FLASH_PROXY_H_ |
| 7 | 7 |
| 8 #include <string> |
| 8 #include <vector> | 9 #include <vector> |
| 9 | 10 |
| 10 #include "ipc/ipc_platform_file.h" | 11 #include "ipc/ipc_platform_file.h" |
| 11 #include "ppapi/c/pp_instance.h" | 12 #include "ppapi/c/pp_instance.h" |
| 12 #include "ppapi/c/pp_module.h" | 13 #include "ppapi/c/pp_module.h" |
| 13 #include "ppapi/c/pp_time.h" | 14 #include "ppapi/c/pp_time.h" |
| 14 #include "ppapi/proxy/host_resource.h" | 15 #include "ppapi/proxy/host_resource.h" |
| 15 #include "ppapi/proxy/interface_proxy.h" | 16 #include "ppapi/proxy/interface_proxy.h" |
| 16 | 17 |
| 17 struct PP_FileInfo_Dev; | 18 struct PP_FileInfo; |
| 18 struct PPB_Flash; | 19 struct PPB_Flash; |
| 19 | 20 |
| 20 namespace pp { | 21 namespace pp { |
| 21 namespace proxy { | 22 namespace proxy { |
| 22 | 23 |
| 23 struct PPBFlash_DrawGlyphs_Params; | 24 struct PPBFlash_DrawGlyphs_Params; |
| 24 class SerializedVarReturnValue; | 25 class SerializedVarReturnValue; |
| 25 | 26 |
| 26 class PPB_Flash_Proxy : public InterfaceProxy { | 27 class PPB_Flash_Proxy : public InterfaceProxy { |
| 27 public: | 28 public: |
| (...skipping 25 matching lines...) Expand all Loading... |
| 53 void OnMsgRunMessageLoop(PP_Instance instance); | 54 void OnMsgRunMessageLoop(PP_Instance instance); |
| 54 void OnMsgQuitMessageLoop(PP_Instance instance); | 55 void OnMsgQuitMessageLoop(PP_Instance instance); |
| 55 void OnMsgGetLocalTimeZoneOffset(PP_Instance instance, PP_Time t, | 56 void OnMsgGetLocalTimeZoneOffset(PP_Instance instance, PP_Time t, |
| 56 double* result); | 57 double* result); |
| 57 }; | 58 }; |
| 58 | 59 |
| 59 } // namespace proxy | 60 } // namespace proxy |
| 60 } // namespace pp | 61 } // namespace pp |
| 61 | 62 |
| 62 #endif // PPAPI_PPB_FLASH_PROXY_H_ | 63 #endif // PPAPI_PPB_FLASH_PROXY_H_ |
| OLD | NEW |