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

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, 6 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 std::unique_ptr<cc::CompositorFrame> frame) override; 193 std::unique_ptr<cc::CompositorFrame> frame) override;
194 void ClearCompositorFrame() override; 194 void ClearCompositorFrame() override;
195 void DidStopFlinging() override; 195 void DidStopFlinging() override;
196 void OnDidNavigateMainFrameToNewPage() override; 196 void OnDidNavigateMainFrameToNewPage() override;
197 void LockCompositingSurface() override; 197 void LockCompositingSurface() override;
198 void UnlockCompositingSurface() override; 198 void UnlockCompositingSurface() override;
199 uint32_t GetSurfaceIdNamespace() override; 199 uint32_t GetSurfaceIdNamespace() override;
200 uint32_t SurfaceIdNamespaceAtPoint(cc::SurfaceHittestDelegate* delegate, 200 uint32_t SurfaceIdNamespaceAtPoint(cc::SurfaceHittestDelegate* delegate,
201 const gfx::Point& point, 201 const gfx::Point& point,
202 gfx::Point* transformed_point) override; 202 gfx::Point* transformed_point) override;
203 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; 203 void ProcessMouseEvent(const blink::WebMouseEvent& event,
204 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; 204 const ui::LatencyInfo& latency) override;
205 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event,
206 const ui::LatencyInfo& latency) override;
205 void ProcessTouchEvent(const blink::WebTouchEvent& event, 207 void ProcessTouchEvent(const blink::WebTouchEvent& event,
206 const ui::LatencyInfo& latency) override; 208 const ui::LatencyInfo& latency) override;
207 void ProcessGestureEvent(const blink::WebGestureEvent& event, 209 void ProcessGestureEvent(const blink::WebGestureEvent& event,
208 const ui::LatencyInfo& latency) override; 210 const ui::LatencyInfo& latency) override;
209 void TransformPointToLocalCoordSpace(const gfx::Point& point, 211 void TransformPointToLocalCoordSpace(const gfx::Point& point,
210 cc::SurfaceId original_surface, 212 cc::SurfaceId original_surface,
211 gfx::Point* transformed_point) override; 213 gfx::Point* transformed_point) override;
212 void FocusedNodeChanged(bool is_editable_node) override; 214 void FocusedNodeChanged(bool is_editable_node) override;
213 215
214 // Overridden from ui::TextInputClient: 216 // Overridden from ui::TextInputClient:
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 bool disable_input_event_router_for_testing_; 693 bool disable_input_event_router_for_testing_;
692 694
693 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 695 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
694 696
695 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 697 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
696 }; 698 };
697 699
698 } // namespace content 700 } // namespace content
699 701
700 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 702 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698