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 "ppapi/c/pp_instance.h" | 8 #include "ppapi/c/pp_instance.h" |
9 #include "ppapi/c/pp_resource.h" | 9 #include "ppapi/c/pp_resource.h" |
10 #include "ppapi/c/pp_var.h" | 10 #include "ppapi/c/pp_var.h" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; | 51 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE; |
52 virtual PP_Var ExecuteScript(PP_Instance instance, | 52 virtual PP_Var ExecuteScript(PP_Instance instance, |
53 PP_Var script, | 53 PP_Var script, |
54 PP_Var* exception) OVERRIDE; | 54 PP_Var* exception) OVERRIDE; |
55 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; | 55 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRIDE; |
56 virtual void NumberOfFindResultsChanged(PP_Instance instance, | 56 virtual void NumberOfFindResultsChanged(PP_Instance instance, |
57 int32_t total, | 57 int32_t total, |
58 PP_Bool final_result) OVERRIDE; | 58 PP_Bool final_result) OVERRIDE; |
59 virtual void SelectedFindResultChanged(PP_Instance instance, | 59 virtual void SelectedFindResultChanged(PP_Instance instance, |
60 int32_t index) OVERRIDE; | 60 int32_t index) OVERRIDE; |
| 61 virtual PP_Var GetFontFamilies(PP_Instance instance) OVERRIDE; |
61 virtual PP_Bool SetFullscreen(PP_Instance instance, | 62 virtual PP_Bool SetFullscreen(PP_Instance instance, |
62 PP_Bool fullscreen) OVERRIDE; | 63 PP_Bool fullscreen) OVERRIDE; |
63 virtual PP_Bool GetScreenSize(PP_Instance instance, | 64 virtual PP_Bool GetScreenSize(PP_Instance instance, |
64 PP_Size* size) OVERRIDE; | 65 PP_Size* size) OVERRIDE; |
65 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE; | 66 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE; |
66 virtual PP_Bool FlashSetFullscreen(PP_Instance instance, | 67 virtual PP_Bool FlashSetFullscreen(PP_Instance instance, |
67 PP_Bool fullscreen) OVERRIDE; | 68 PP_Bool fullscreen) OVERRIDE; |
68 virtual PP_Bool FlashGetScreenSize(PP_Instance instance, PP_Size* size) | 69 virtual PP_Bool FlashGetScreenSize(PP_Instance instance, PP_Size* size) |
69 OVERRIDE; | 70 OVERRIDE; |
70 virtual void SampleGamepads(PP_Instance instance, PP_GamepadsData_Dev* data) | 71 virtual void SampleGamepads(PP_Instance instance, PP_GamepadsData_Dev* data) |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 void MouseLockCompleteInHost(int32_t result, PP_Instance instance); | 156 void MouseLockCompleteInHost(int32_t result, PP_Instance instance); |
156 | 157 |
157 pp::CompletionCallbackFactory<PPB_Instance_Proxy, | 158 pp::CompletionCallbackFactory<PPB_Instance_Proxy, |
158 ProxyNonThreadSafeRefCount> callback_factory_; | 159 ProxyNonThreadSafeRefCount> callback_factory_; |
159 }; | 160 }; |
160 | 161 |
161 } // namespace proxy | 162 } // namespace proxy |
162 } // namespace ppapi | 163 } // namespace ppapi |
163 | 164 |
164 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ | 165 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ |
OLD | NEW |