| Index: content/browser/renderer_host/render_view_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h
|
| index cf31bbae19da055fce341f53860e2543c94c4db8..5ad25b4aa391a307f67d4b293791ee7e6cd77459 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.h
|
| +++ b/content/browser/renderer_host/render_view_host_impl.h
|
| @@ -392,6 +392,11 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| void DidCancelPopupMenu();
|
| #endif
|
|
|
| +#if defined(OS_ANDROID)
|
| + void DidSelectPopupMenuItems(const std::vector<int>& selected_indices);
|
| + void DidCancelPopupMenu();
|
| +#endif
|
| +
|
| // User rotated the screen. Calls the "onorientationchange" Javascript hook.
|
| void SendOrientationChangeEvent(int orientation);
|
|
|
| @@ -542,7 +547,7 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| void OnDomOperationResponse(const std::string& json_string,
|
| int automation_id);
|
|
|
| -#if defined(OS_MACOSX)
|
| +#if defined(OS_MACOSX) || defined(OS_ANDROID)
|
| void OnMsgShowPopup(const ViewHostMsg_ShowPopup_Params& params);
|
| #endif
|
|
|
|
|