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_FLASH_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_FLASH_RESOURCE_H_ |
6 #define PPAPI_PROXY_FLASH_RESOURCE_H_ | 6 #define PPAPI_PROXY_FLASH_RESOURCE_H_ |
7 | 7 |
8 #include "ppapi/c/pp_instance.h" | 8 #include "ppapi/c/pp_instance.h" |
9 #include "ppapi/c/pp_var.h" | 9 #include "ppapi/c/pp_var.h" |
10 #include "ppapi/c/private/ppb_flash.h" | 10 #include "ppapi/c/private/ppb_flash.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 // Resource override. | 26 // Resource override. |
27 virtual thunk::PPB_Flash_Functions_API* AsPPB_Flash_Functions_API() OVERRIDE; | 27 virtual thunk::PPB_Flash_Functions_API* AsPPB_Flash_Functions_API() OVERRIDE; |
28 | 28 |
29 // PPB_Flash_Functions_API implementation. | 29 // PPB_Flash_Functions_API implementation. |
30 virtual PP_Var GetProxyForURL(PP_Instance instance, | 30 virtual PP_Var GetProxyForURL(PP_Instance instance, |
31 const std::string& url) OVERRIDE; | 31 const std::string& url) OVERRIDE; |
32 virtual void UpdateActivity(PP_Instance instance) OVERRIDE; | 32 virtual void UpdateActivity(PP_Instance instance) OVERRIDE; |
33 virtual PP_Bool SetCrashData(PP_Instance instance, | 33 virtual PP_Bool SetCrashData(PP_Instance instance, |
34 PP_FlashCrashKey key, | 34 PP_FlashCrashKey key, |
35 PP_Var value) OVERRIDE; | 35 PP_Var value) OVERRIDE; |
| 36 virtual double GetLocalTimeZoneOffset(PP_Instance instance, |
| 37 PP_Time t) OVERRIDE; |
| 38 |
36 private: | 39 private: |
37 DISALLOW_COPY_AND_ASSIGN(FlashResource); | 40 DISALLOW_COPY_AND_ASSIGN(FlashResource); |
38 }; | 41 }; |
39 | 42 |
40 } // namespace proxy | 43 } // namespace proxy |
41 } // namespace ppapi | 44 } // namespace ppapi |
42 | 45 |
43 #endif // PPAPI_PROXY_FLASH_RESOURCE_H_ | 46 #endif // PPAPI_PROXY_FLASH_RESOURCE_H_ |
OLD | NEW |