| 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_THUNK_PPB_FLASH_API_H_ | 5 #ifndef PPAPI_THUNK_PPB_FLASH_API_H_ |
| 6 #define PPAPI_THUNK_PPB_FLASH_API_H_ | 6 #define PPAPI_THUNK_PPB_FLASH_API_H_ |
| 7 | 7 |
| 8 #include "ppapi/c/private/ppb_flash.h" | 8 #include "ppapi/c/private/ppb_flash.h" |
| 9 #include "ppapi/c/private/ppb_flash_file.h" | 9 #include "ppapi/c/private/ppb_flash_file.h" |
| 10 #include "ppapi/thunk/ppapi_thunk_export.h" | 10 #include "ppapi/thunk/ppapi_thunk_export.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 const char* target, | 48 const char* target, |
| 49 PP_Bool from_user_action) = 0; | 49 PP_Bool from_user_action) = 0; |
| 50 | 50 |
| 51 // Internal navigate function that takes a URLRequestInfoData. | 51 // Internal navigate function that takes a URLRequestInfoData. |
| 52 virtual int32_t Navigate(PP_Instance instance, | 52 virtual int32_t Navigate(PP_Instance instance, |
| 53 const URLRequestInfoData& data, | 53 const URLRequestInfoData& data, |
| 54 const char* target, | 54 const char* target, |
| 55 PP_Bool from_user_action) = 0; | 55 PP_Bool from_user_action) = 0; |
| 56 | 56 |
| 57 virtual PP_Bool IsRectTopmost(PP_Instance instance, const PP_Rect* rect) = 0; | 57 virtual PP_Bool IsRectTopmost(PP_Instance instance, const PP_Rect* rect) = 0; |
| 58 virtual PP_Var GetSetting(PP_Instance instance, PP_FlashSetting setting) = 0; | |
| 59 }; | 58 }; |
| 60 | 59 |
| 61 } // namespace thunk | 60 } // namespace thunk |
| 62 } // namespace ppapi | 61 } // namespace ppapi |
| 63 | 62 |
| 64 #endif // PPAPI_THUNK_PPB_FLASH_API_H_ | 63 #endif // PPAPI_THUNK_PPB_FLASH_API_H_ |
| OLD | NEW |