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_INSTANCE_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ |
6 #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ | 6 #define PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ppapi/c/pp_instance.h" | 10 #include "ppapi/c/pp_instance.h" |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 int32_t total, | 63 int32_t total, |
64 PP_Bool final_result) OVERRIDE; | 64 PP_Bool final_result) OVERRIDE; |
65 virtual void SelectedFindResultChanged(PP_Instance instance, | 65 virtual void SelectedFindResultChanged(PP_Instance instance, |
66 int32_t index) OVERRIDE; | 66 int32_t index) OVERRIDE; |
67 virtual PP_Var GetFontFamilies(PP_Instance instance) OVERRIDE; | 67 virtual PP_Var GetFontFamilies(PP_Instance instance) OVERRIDE; |
68 virtual PP_Bool SetFullscreen(PP_Instance instance, | 68 virtual PP_Bool SetFullscreen(PP_Instance instance, |
69 PP_Bool fullscreen) OVERRIDE; | 69 PP_Bool fullscreen) OVERRIDE; |
70 virtual PP_Bool GetScreenSize(PP_Instance instance, | 70 virtual PP_Bool GetScreenSize(PP_Instance instance, |
71 PP_Size* size) OVERRIDE; | 71 PP_Size* size) OVERRIDE; |
72 virtual thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; | 72 virtual thunk::PPB_Flash_API* GetFlashAPI() OVERRIDE; |
| 73 virtual thunk::PPB_Flash_Clipboard_API* GetFlashClipboardAPI( |
| 74 PP_Instance instance) OVERRIDE; |
| 75 virtual thunk::PPB_Flash_File_API* GetFlashFileAPI(PP_Instance instance) |
| 76 OVERRIDE; |
73 virtual thunk::PPB_Flash_Functions_API* GetFlashFunctionsAPI( | 77 virtual thunk::PPB_Flash_Functions_API* GetFlashFunctionsAPI( |
74 PP_Instance instance) OVERRIDE; | 78 PP_Instance instance) OVERRIDE; |
75 virtual thunk::PPB_Flash_Clipboard_API* GetFlashClipboardAPI( | |
76 PP_Instance instance) OVERRIDE; | |
77 virtual thunk::PPB_Gamepad_API* GetGamepadAPI(PP_Instance instance) OVERRIDE; | 79 virtual thunk::PPB_Gamepad_API* GetGamepadAPI(PP_Instance instance) OVERRIDE; |
78 virtual int32_t RequestInputEvents(PP_Instance instance, | 80 virtual int32_t RequestInputEvents(PP_Instance instance, |
79 uint32_t event_classes) OVERRIDE; | 81 uint32_t event_classes) OVERRIDE; |
80 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, | 82 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, |
81 uint32_t event_classes) OVERRIDE; | 83 uint32_t event_classes) OVERRIDE; |
82 virtual void ClearInputEventRequest(PP_Instance instance, | 84 virtual void ClearInputEventRequest(PP_Instance instance, |
83 uint32_t event_classes) OVERRIDE; | 85 uint32_t event_classes) OVERRIDE; |
84 virtual void ClosePendingUserGesture(PP_Instance instance, | 86 virtual void ClosePendingUserGesture(PP_Instance instance, |
85 PP_TimeTicks timestamp) OVERRIDE; | 87 PP_TimeTicks timestamp) OVERRIDE; |
86 virtual void ZoomChanged(PP_Instance instance, double factor) OVERRIDE; | 88 virtual void ZoomChanged(PP_Instance instance, double factor) OVERRIDE; |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 // Other helpers. | 277 // Other helpers. |
276 void CancelAnyPendingRequestSurroundingText(PP_Instance instance); | 278 void CancelAnyPendingRequestSurroundingText(PP_Instance instance); |
277 | 279 |
278 ProxyCompletionCallbackFactory<PPB_Instance_Proxy> callback_factory_; | 280 ProxyCompletionCallbackFactory<PPB_Instance_Proxy> callback_factory_; |
279 }; | 281 }; |
280 | 282 |
281 } // namespace proxy | 283 } // namespace proxy |
282 } // namespace ppapi | 284 } // namespace ppapi |
283 | 285 |
284 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ | 286 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ |
OLD | NEW |