Chromium Code Reviews| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 86 void RenderProcessGone(base::TerminationStatus status, | 86 void RenderProcessGone(base::TerminationStatus status, |
| 87 int error_code) override; | 87 int error_code) override; |
| 88 void Destroy() override; | 88 void Destroy() override; |
| 89 void SetTooltipText(const base::string16& tooltip_text) override; | 89 void SetTooltipText(const base::string16& tooltip_text) override; |
| 90 void SelectionChanged(const base::string16& text, | 90 void SelectionChanged(const base::string16& text, |
| 91 size_t offset, | 91 size_t offset, |
| 92 const gfx::Range& range) override; | 92 const gfx::Range& range) override; |
| 93 void SelectionBoundsChanged( | 93 void SelectionBoundsChanged( |
| 94 const ViewHostMsg_SelectionBounds_Params& params) override; | 94 const ViewHostMsg_SelectionBounds_Params& params) override; |
| 95 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, | 95 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, |
| 96 cc::LocalSurfaceId local_surface_id, | |
|
Fady Samuel
2017/03/15 12:05:47
const cc::LocalSurfaceId&
Saman Sami
2017/03/16 18:33:07
Done.
| |
| 96 cc::CompositorFrame frame) override; | 97 cc::CompositorFrame frame) override; |
| 97 #if defined(USE_AURA) | 98 #if defined(USE_AURA) |
| 98 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, | 99 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, |
| 99 InputEventAckState ack_result) override; | 100 InputEventAckState ack_result) override; |
| 100 #endif | 101 #endif |
| 101 void ProcessMouseEvent(const blink::WebMouseEvent& event, | 102 void ProcessMouseEvent(const blink::WebMouseEvent& event, |
| 102 const ui::LatencyInfo& latency) override; | 103 const ui::LatencyInfo& latency) override; |
| 103 void ProcessTouchEvent(const blink::WebTouchEvent& event, | 104 void ProcessTouchEvent(const blink::WebTouchEvent& event, |
| 104 const ui::LatencyInfo& latency) override; | 105 const ui::LatencyInfo& latency) override; |
| 105 | 106 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |