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

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

Issue 2914393002: Adding phase info to wheel events migrated to wheel phase handler class. (Closed)
Patch Set: fixed mouse_wheel_phase_handler_path in rwhv_mac Created 3 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_BASE_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 class SurfaceHittestDelegate; 62 class SurfaceHittestDelegate;
63 } 63 }
64 64
65 namespace ui { 65 namespace ui {
66 class LatencyInfo; 66 class LatencyInfo;
67 struct DidOverscrollParams; 67 struct DidOverscrollParams;
68 } 68 }
69 69
70 namespace content { 70 namespace content {
71 71
72 // The duration after which a synthetic wheel with zero deltas and
73 // phase = |kPhaseEnded| will be sent after the last wheel event.
74 const int64_t kDefaultMouseWheelLatchingTransactionMs = 100;
75
76 class BrowserAccessibilityDelegate; 72 class BrowserAccessibilityDelegate;
77 class BrowserAccessibilityManager; 73 class BrowserAccessibilityManager;
78 class RenderWidgetHostImpl; 74 class RenderWidgetHostImpl;
79 class RenderWidgetHostViewBaseObserver; 75 class RenderWidgetHostViewBaseObserver;
80 class SyntheticGestureTarget; 76 class SyntheticGestureTarget;
81 class TextInputManager; 77 class TextInputManager;
82 class TouchSelectionControllerClientManager; 78 class TouchSelectionControllerClientManager;
83 class WebCursor; 79 class WebCursor;
84 struct NativeWebKeyboardEvent; 80 struct NativeWebKeyboardEvent;
85 struct TextInputState; 81 struct TextInputState;
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 base::ObserverList<RenderWidgetHostViewBaseObserver> observers_; 486 base::ObserverList<RenderWidgetHostViewBaseObserver> observers_;
491 487
492 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_; 488 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_;
493 489
494 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); 490 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase);
495 }; 491 };
496 492
497 } // namespace content 493 } // namespace content
498 494
499 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 495 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698