| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 void LockCompositingSurface() override; | 120 void LockCompositingSurface() override; |
| 121 void UnlockCompositingSurface() override; | 121 void UnlockCompositingSurface() override; |
| 122 | 122 |
| 123 void WheelEventAck(const blink::WebMouseWheelEvent& event, | 123 void WheelEventAck(const blink::WebMouseWheelEvent& event, |
| 124 InputEventAckState ack_result) override; | 124 InputEventAckState ack_result) override; |
| 125 | 125 |
| 126 void GestureEventAck(const blink::WebGestureEvent& event, | 126 void GestureEventAck(const blink::WebGestureEvent& event, |
| 127 InputEventAckState ack_result) override; | 127 InputEventAckState ack_result) override; |
| 128 | 128 |
| 129 bool IsRenderWidgetHostViewGuest() override; | 129 bool IsRenderWidgetHostViewGuest() override; |
| 130 RenderWidgetHostViewBase* GetEmbedderView() override; |
| 130 | 131 |
| 131 protected: | 132 protected: |
| 132 friend class RenderWidgetHostView; | 133 friend class RenderWidgetHostView; |
| 133 | 134 |
| 134 private: | 135 private: |
| 135 RenderWidgetHostViewGuest( | 136 RenderWidgetHostViewGuest( |
| 136 RenderWidgetHost* widget, | 137 RenderWidgetHost* widget, |
| 137 BrowserPluginGuest* guest, | 138 BrowserPluginGuest* guest, |
| 138 base::WeakPtr<RenderWidgetHostViewBase> platform_view); | 139 base::WeakPtr<RenderWidgetHostViewBase> platform_view); |
| 139 | 140 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 160 // The platform view for this RenderWidgetHostView. | 161 // The platform view for this RenderWidgetHostView. |
| 161 // RenderWidgetHostViewGuest mostly only cares about stuff related to | 162 // RenderWidgetHostViewGuest mostly only cares about stuff related to |
| 162 // compositing, the rest are directly forwarded to this |platform_view_|. | 163 // compositing, the rest are directly forwarded to this |platform_view_|. |
| 163 base::WeakPtr<RenderWidgetHostViewBase> platform_view_; | 164 base::WeakPtr<RenderWidgetHostViewBase> platform_view_; |
| 164 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest); | 165 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest); |
| 165 }; | 166 }; |
| 166 | 167 |
| 167 } // namespace content | 168 } // namespace content |
| 168 | 169 |
| 169 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ | 170 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ |
| OLD | NEW |