Chromium Code Reviews| Index: content/browser/frame_host/render_widget_host_view_child_frame.h |
| diff --git a/content/browser/frame_host/render_widget_host_view_child_frame.h b/content/browser/frame_host/render_widget_host_view_child_frame.h |
| index 9af289d782d4706a25a8ac21a7fbc264875fc34d..42ff2bff0a990a118516b2635bda2034bda508d8 100644 |
| --- a/content/browser/frame_host/render_widget_host_view_child_frame.h |
| +++ b/content/browser/frame_host/render_widget_host_view_child_frame.h |
| @@ -191,6 +191,14 @@ class CONTENT_EXPORT RenderWidgetHostViewChildFrame |
| // to the frame tree. |
| RenderWidgetHostViewBase* GetParentView(); |
| + // TODO(ekaramad): This is used for input event routing when the target of |
| + // events is a RenderWidgetHostViewGuest which is embeded in an OOPIF (the |
|
Charlie Reis
2016/11/02 20:47:06
nit: embedded
EhsanK
2016/11/08 23:10:16
Done.
|
| + // only example right now is MimeHandlerViewGuest). Same as above, this |
| + // method should be removed when either direct routing is supported for RWHVG |
| + // (and made a private member of RWHVG again) or RWHVG is removed entirely |
| + // (https://crbug.com/533069). |
| + virtual RenderWidgetHostViewBase* GetOwnerRenderWidgetHostView() const; |
|
Charlie Reis
2016/11/02 20:47:06
Why does this need to be here, if it's implemented
EhsanK
2016/11/08 23:10:16
Yes, it would definitely be easier (lfg@ also sugg
|
| + |
| void RegisterFrameSinkId(); |
| void UnregisterFrameSinkId(); |