Chromium Code Reviews| Index: ppapi/proxy/ppb_instance_proxy.h |
| diff --git a/ppapi/proxy/ppb_instance_proxy.h b/ppapi/proxy/ppb_instance_proxy.h |
| index 2304ae6f6c14f48375a51b942c7c6bb16072d746..e832b779cbe3ff6af04f077c7dd9e22c887abd2c 100644 |
| --- a/ppapi/proxy/ppb_instance_proxy.h |
| +++ b/ppapi/proxy/ppb_instance_proxy.h |
| @@ -64,6 +64,9 @@ class PPB_Instance_Proxy : public InterfaceProxy, |
| PP_Bool final_result) OVERRIDE; |
| virtual void SelectedFindResultChanged(PP_Instance instance, |
| int32_t index) OVERRIDE; |
| + virtual void SetTickmarks(PP_Instance instance, |
| + const struct PP_Rect* tickmarks, |
|
yzshen1
2014/03/19 17:38:05
nit: no need to have 'struct'.
raymes
2014/03/20 01:53:56
Done.
|
| + uint32_t count) OVERRIDE; |
| virtual PP_Bool IsFullscreen(PP_Instance instance) OVERRIDE; |
| virtual PP_Bool SetFullscreen(PP_Instance instance, |
| PP_Bool fullscreen) OVERRIDE; |
| @@ -179,6 +182,8 @@ class PPB_Instance_Proxy : public InterfaceProxy, |
| PP_Bool final_result); |
| void OnHostMsgSelectFindResultChanged(PP_Instance instance, |
| int32_t index); |
| + void OnHostMsgSetTickmarks(PP_Instance instance, |
| + const std::vector<PP_Rect>& tickmarks); |
| void OnHostMsgSetFullscreen(PP_Instance instance, |
| PP_Bool fullscreen, |
| PP_Bool* result); |