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

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

Issue 2783973002: Moving LatencyInfo into a separate component. (Closed)
Patch Set: Rebase again 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_EVENT_HANDLER_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_EVENT_HANDLER_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_EVENT_HANDLER_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_EVENT_HANDLER_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
12 #include "content/public/browser/native_web_keyboard_event.h" 12 #include "content/public/browser/native_web_keyboard_event.h"
13 #include "ui/aura/window_tracker.h" 13 #include "ui/aura/window_tracker.h"
14 #include "ui/events/event_handler.h" 14 #include "ui/events/event_handler.h"
15 #include "ui/events/gestures/motion_event_aura.h" 15 #include "ui/events/gestures/motion_event_aura.h"
16 #include "ui/events/latency_info.h" 16 #include "ui/latency/latency_info.h"
17 17
18 namespace aura { 18 namespace aura {
19 class Window; 19 class Window;
20 } // namespace aura 20 } // namespace aura
21 21
22 namespace blink { 22 namespace blink {
23 class WebMouseEvent; 23 class WebMouseEvent;
24 class WebMouseWheelEvent; 24 class WebMouseWheelEvent;
25 class WebTouchEvent; 25 class WebTouchEvent;
26 } // namespace blink 26 } // namespace blink
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 ui::EventHandler* popup_child_event_handler_; 246 ui::EventHandler* popup_child_event_handler_;
247 Delegate* const delegate_; 247 Delegate* const delegate_;
248 aura::Window* window_; 248 aura::Window* window_;
249 249
250 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewEventHandler); 250 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewEventHandler);
251 }; 251 };
252 252
253 } // namespace content 253 } // namespace content
254 254
255 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_EVENT_HANDLER_H _ 255 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_EVENT_HANDLER_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698