| 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_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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 virtual int32_t RequestInputEvents(PP_Instance instance, | 71 virtual int32_t RequestInputEvents(PP_Instance instance, |
| 72 uint32_t event_classes) OVERRIDE; | 72 uint32_t event_classes) OVERRIDE; |
| 73 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, | 73 virtual int32_t RequestFilteringInputEvents(PP_Instance instance, |
| 74 uint32_t event_classes) OVERRIDE; | 74 uint32_t event_classes) OVERRIDE; |
| 75 virtual void ClearInputEventRequest(PP_Instance instance, | 75 virtual void ClearInputEventRequest(PP_Instance instance, |
| 76 uint32_t event_classes) OVERRIDE; | 76 uint32_t event_classes) OVERRIDE; |
| 77 virtual void ZoomChanged(PP_Instance instance, double factor) OVERRIDE; | 77 virtual void ZoomChanged(PP_Instance instance, double factor) OVERRIDE; |
| 78 virtual void ZoomLimitsChanged(PP_Instance instance, | 78 virtual void ZoomLimitsChanged(PP_Instance instance, |
| 79 double minimum_factor, | 79 double minimum_factor, |
| 80 double maximium_factor) OVERRIDE; | 80 double maximium_factor) OVERRIDE; |
| 81 virtual void SubscribeToPolicyUpdates(PP_Instance instance) OVERRIDE; | |
| 82 virtual PP_Var ResolveRelativeToDocument( | 81 virtual PP_Var ResolveRelativeToDocument( |
| 83 PP_Instance instance, | 82 PP_Instance instance, |
| 84 PP_Var relative, | 83 PP_Var relative, |
| 85 PP_URLComponents_Dev* components) OVERRIDE; | 84 PP_URLComponents_Dev* components) OVERRIDE; |
| 86 virtual PP_Bool DocumentCanRequest(PP_Instance instance, PP_Var url) OVERRIDE; | 85 virtual PP_Bool DocumentCanRequest(PP_Instance instance, PP_Var url) OVERRIDE; |
| 87 virtual PP_Bool DocumentCanAccessDocument(PP_Instance instance, | 86 virtual PP_Bool DocumentCanAccessDocument(PP_Instance instance, |
| 88 PP_Instance target) OVERRIDE; | 87 PP_Instance target) OVERRIDE; |
| 89 virtual PP_Var GetDocumentURL(PP_Instance instance, | 88 virtual PP_Var GetDocumentURL(PP_Instance instance, |
| 90 PP_URLComponents_Dev* components) OVERRIDE; | 89 PP_URLComponents_Dev* components) OVERRIDE; |
| 91 virtual PP_Var GetPluginInstanceURL( | 90 virtual PP_Var GetPluginInstanceURL( |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 void OnMsgGetDocumentURL(PP_Instance instance, | 154 void OnMsgGetDocumentURL(PP_Instance instance, |
| 156 SerializedVarReturnValue result); | 155 SerializedVarReturnValue result); |
| 157 void OnMsgGetPluginInstanceURL(PP_Instance instance, | 156 void OnMsgGetPluginInstanceURL(PP_Instance instance, |
| 158 SerializedVarReturnValue result); | 157 SerializedVarReturnValue result); |
| 159 }; | 158 }; |
| 160 | 159 |
| 161 } // namespace proxy | 160 } // namespace proxy |
| 162 } // namespace ppapi | 161 } // namespace ppapi |
| 163 | 162 |
| 164 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ | 163 #endif // PPAPI_PROXY_PPB_INSTANCE_PROXY_H_ |
| OLD | NEW |