| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |