Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: content/browser/frame_host/render_widget_host_view_child_frame.h

Issue 2804753002: mus: Fix showing guest views in --mash and --mus. (Closed)
Patch Set: tot merge Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/frame_host/render_widget_host_view_child_frame.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_CHILD_FRAME_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 int error_code) override; 104 int error_code) override;
105 void Destroy() override; 105 void Destroy() override;
106 void SetTooltipText(const base::string16& tooltip_text) override; 106 void SetTooltipText(const base::string16& tooltip_text) override;
107 bool HasAcceleratedSurface(const gfx::Size& desired_size) override; 107 bool HasAcceleratedSurface(const gfx::Size& desired_size) override;
108 void GestureEventAck(const blink::WebGestureEvent& event, 108 void GestureEventAck(const blink::WebGestureEvent& event,
109 InputEventAckState ack_result) override; 109 InputEventAckState ack_result) override;
110 void DidCreateNewRendererCompositorFrameSink() override; 110 void DidCreateNewRendererCompositorFrameSink() override;
111 void SubmitCompositorFrame(const cc::LocalSurfaceId& local_surface_id, 111 void SubmitCompositorFrame(const cc::LocalSurfaceId& local_surface_id,
112 cc::CompositorFrame frame) override; 112 cc::CompositorFrame frame) override;
113 void OnBeginFrameDidNotSwap(const cc::BeginFrameAck& ack) override; 113 void OnBeginFrameDidNotSwap(const cc::BeginFrameAck& ack) override;
114 void OnSurfaceChanged(const cc::SurfaceInfo& surface_info) override;
114 // Since the URL of content rendered by this class is not displayed in 115 // Since the URL of content rendered by this class is not displayed in
115 // the URL bar, this method does not need an implementation. 116 // the URL bar, this method does not need an implementation.
116 void ClearCompositorFrame() override {} 117 void ClearCompositorFrame() override {}
117 gfx::Rect GetBoundsInRootWindow() override; 118 gfx::Rect GetBoundsInRootWindow() override;
118 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, 119 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch,
119 InputEventAckState ack_result) override; 120 InputEventAckState ack_result) override;
120 bool LockMouse() override; 121 bool LockMouse() override;
121 void UnlockMouse() override; 122 void UnlockMouse() override;
122 cc::FrameSinkId GetFrameSinkId() override; 123 cc::FrameSinkId GetFrameSinkId() override;
123 void ProcessKeyboardEvent(const NativeWebKeyboardEvent& event) override; 124 void ProcessKeyboardEvent(const NativeWebKeyboardEvent& event) override;
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 // The background color of the widget. 260 // The background color of the widget.
260 SkColor background_color_; 261 SkColor background_color_;
261 262
262 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_; 263 base::WeakPtrFactory<RenderWidgetHostViewChildFrame> weak_factory_;
263 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); 264 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame);
264 }; 265 };
265 266
266 } // namespace content 267 } // namespace content
267 268
268 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ 269 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/render_widget_host_view_child_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698