| 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 ea7ea9303dd14ce04aaffcae60de8926a23757b3..c0ae6620422901686f591bbb42d40501a2c94aad 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.h
|
| +++ b/content/browser/renderer_host/render_view_host_impl.h
|
| @@ -29,10 +29,9 @@
|
|
|
| class SkBitmap;
|
| class FrameMsg_Navigate;
|
| +struct FrameMsg_Navigate_Params;
|
| struct MediaPlayerAction;
|
| struct ViewHostMsg_CreateWindow_Params;
|
| -struct ViewHostMsg_ShowPopup_Params;
|
| -struct FrameMsg_Navigate_Params;
|
| struct ViewMsg_PostMessage_Params;
|
|
|
| namespace base {
|
| @@ -334,23 +333,12 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| // Creates a full screen RenderWidget.
|
| void CreateNewFullscreenWidget(int route_id);
|
|
|
| -#if defined(OS_MACOSX)
|
| - // Select popup menu related methods (for external popup menus).
|
| - void DidSelectPopupMenuItem(int selected_index);
|
| - void DidCancelPopupMenu();
|
| -#endif
|
| -
|
| #if defined(ENABLE_BROWSER_CDMS)
|
| MediaWebContentsObserver* media_web_contents_observer() {
|
| return media_web_contents_observer_.get();
|
| }
|
| #endif
|
|
|
| -#if defined(OS_ANDROID)
|
| - void DidSelectPopupMenuItems(const std::vector<int>& selected_indices);
|
| - void DidCancelPopupMenu();
|
| -#endif
|
| -
|
| int main_frame_routing_id() const {
|
| return main_frame_routing_id_;
|
| }
|
| @@ -439,11 +427,6 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| void OnRunFileChooser(const FileChooserParams& params);
|
| void OnFocusedNodeTouched(bool editable);
|
|
|
| -#if defined(OS_MACOSX) || defined(OS_ANDROID)
|
| - void OnShowPopup(const ViewHostMsg_ShowPopup_Params& params);
|
| - void OnHidePopup();
|
| -#endif
|
| -
|
| private:
|
| // TODO(nasko): Temporarily friend RenderFrameHostImpl, so we don't duplicate
|
| // utility functions and state needed in both classes, while we move frame
|
|
|