| Index: content/browser/web_contents/touch_editable_impl_aura.h
|
| ===================================================================
|
| --- content/browser/web_contents/touch_editable_impl_aura.h (revision 254898)
|
| +++ content/browser/web_contents/touch_editable_impl_aura.h (working copy)
|
| @@ -50,6 +50,8 @@
|
| virtual bool HandleInputEvent(const ui::Event* event) OVERRIDE;
|
| virtual void GestureEventAck(int gesture_event_type) OVERRIDE;
|
| virtual void OnViewDestroyed() OVERRIDE;
|
| + virtual void SetContextMenuRenderFrameID(int render_process_id,
|
| + int render_frame_id) OVERRIDE;
|
|
|
| // Overridden from ui::TouchEditable:
|
| virtual void SelectRect(const gfx::Point& start,
|
| @@ -87,6 +89,10 @@
|
| RenderWidgetHostViewAura* rwhva_;
|
| scoped_ptr<ui::TouchSelectionController> touch_selection_controller_;
|
|
|
| + // The IDs of the RenderFrameHost where the context menu is over.
|
| + int menu_render_process_id_;
|
| + int menu_render_frame_id_;
|
| +
|
| // True if |rwhva_| is currently handling a gesture that could result in a
|
| // change in selection (long press, double tap or triple tap).
|
| bool selection_gesture_in_process_;
|
|
|