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

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

Issue 1993383002: Adding Event.Latency.Browser.WheelUI, Passing latency_info to ProcessMouse/MouseWheelEvent functions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 std::unique_ptr<cc::CompositorFrame> frame) override; 187 std::unique_ptr<cc::CompositorFrame> frame) override;
188 void ClearCompositorFrame() override; 188 void ClearCompositorFrame() override;
189 void DidStopFlinging() override; 189 void DidStopFlinging() override;
190 void OnDidNavigateMainFrameToNewPage() override; 190 void OnDidNavigateMainFrameToNewPage() override;
191 void LockCompositingSurface() override; 191 void LockCompositingSurface() override;
192 void UnlockCompositingSurface() override; 192 void UnlockCompositingSurface() override;
193 uint32_t GetSurfaceIdNamespace() override; 193 uint32_t GetSurfaceIdNamespace() override;
194 uint32_t SurfaceIdNamespaceAtPoint(cc::SurfaceHittestDelegate* delegate, 194 uint32_t SurfaceIdNamespaceAtPoint(cc::SurfaceHittestDelegate* delegate,
195 const gfx::Point& point, 195 const gfx::Point& point,
196 gfx::Point* transformed_point) override; 196 gfx::Point* transformed_point) override;
197 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; 197 void ProcessMouseEvent(const blink::WebMouseEvent& event,
198 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; 198 const ui::LatencyInfo& latency) override;
199 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event,
200 const ui::LatencyInfo& latency) override;
199 void ProcessTouchEvent(const blink::WebTouchEvent& event, 201 void ProcessTouchEvent(const blink::WebTouchEvent& event,
200 const ui::LatencyInfo& latency) override; 202 const ui::LatencyInfo& latency) override;
201 void ProcessGestureEvent(const blink::WebGestureEvent& event, 203 void ProcessGestureEvent(const blink::WebGestureEvent& event,
202 const ui::LatencyInfo& latency) override; 204 const ui::LatencyInfo& latency) override;
203 void TransformPointToLocalCoordSpace(const gfx::Point& point, 205 void TransformPointToLocalCoordSpace(const gfx::Point& point,
204 cc::SurfaceId original_surface, 206 cc::SurfaceId original_surface,
205 gfx::Point* transformed_point) override; 207 gfx::Point* transformed_point) override;
206 208
207 // Overridden from ui::TextInputClient: 209 // Overridden from ui::TextInputClient:
208 void SetCompositionText(const ui::CompositionText& composition) override; 210 void SetCompositionText(const ui::CompositionText& composition) override;
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 bool disable_input_event_router_for_testing_; 675 bool disable_input_event_router_for_testing_;
674 676
675 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 677 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
676 678
677 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 679 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
678 }; 680 };
679 681
680 } // namespace content 682 } // namespace content
681 683
682 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 684 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698