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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.h

Issue 2382873002: Replace usage of SurfaceId's client_id with FrameSinkId (Closed)
Patch Set: Rebased Created 4 years, 2 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; 179 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override;
180 bool LockMouse() override; 180 bool LockMouse() override;
181 void UnlockMouse() override; 181 void UnlockMouse() override;
182 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, 182 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id,
183 cc::CompositorFrame frame) override; 183 cc::CompositorFrame frame) override;
184 void ClearCompositorFrame() override; 184 void ClearCompositorFrame() override;
185 void DidStopFlinging() override; 185 void DidStopFlinging() override;
186 void OnDidNavigateMainFrameToNewPage() override; 186 void OnDidNavigateMainFrameToNewPage() override;
187 void LockCompositingSurface() override; 187 void LockCompositingSurface() override;
188 void UnlockCompositingSurface() override; 188 void UnlockCompositingSurface() override;
189 uint32_t GetSurfaceClientId() override; 189 cc::FrameSinkId GetFrameSinkId() override;
190 uint32_t SurfaceClientIdAtPoint(cc::SurfaceHittestDelegate* delegate, 190 cc::FrameSinkId FrameSinkIdAtPoint(cc::SurfaceHittestDelegate* delegate,
191 const gfx::Point& point, 191 const gfx::Point& point,
192 gfx::Point* transformed_point) override; 192 gfx::Point* transformed_point) override;
193 void ProcessMouseEvent(const blink::WebMouseEvent& event, 193 void ProcessMouseEvent(const blink::WebMouseEvent& event,
194 const ui::LatencyInfo& latency) override; 194 const ui::LatencyInfo& latency) override;
195 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event, 195 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event,
196 const ui::LatencyInfo& latency) override; 196 const ui::LatencyInfo& latency) override;
197 void ProcessTouchEvent(const blink::WebTouchEvent& event, 197 void ProcessTouchEvent(const blink::WebTouchEvent& event,
198 const ui::LatencyInfo& latency) override; 198 const ui::LatencyInfo& latency) override;
199 void ProcessGestureEvent(const blink::WebGestureEvent& event, 199 void ProcessGestureEvent(const blink::WebGestureEvent& event,
200 const ui::LatencyInfo& latency) override; 200 const ui::LatencyInfo& latency) override;
201 gfx::Point TransformPointToLocalCoordSpace( 201 gfx::Point TransformPointToLocalCoordSpace(
202 const gfx::Point& point, 202 const gfx::Point& point,
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 int32_t last_active_widget_routing_id_; 699 int32_t last_active_widget_routing_id_;
700 700
701 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 701 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
702 702
703 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 703 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
704 }; 704 };
705 705
706 } // namespace content 706 } // namespace content
707 707
708 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 708 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698