| OLD | NEW |
| 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" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 } // namespace blink | 26 } // namespace blink |
| 27 | 27 |
| 28 namespace ui { | 28 namespace ui { |
| 29 class TextInputClient; | 29 class TextInputClient; |
| 30 class TouchSelectionController; | 30 class TouchSelectionController; |
| 31 } | 31 } |
| 32 | 32 |
| 33 namespace content { | 33 namespace content { |
| 34 struct ContextMenuParams; | 34 struct ContextMenuParams; |
| 35 class OverscrollController; | 35 class OverscrollController; |
| 36 class RenderFrameHostImpl; | |
| 37 class RenderViewHost; | 36 class RenderViewHost; |
| 38 class RenderViewHostDelegateView; | |
| 39 class RenderWidgetHostImpl; | 37 class RenderWidgetHostImpl; |
| 40 class RenderWidgetHostViewBase; | 38 class RenderWidgetHostViewBase; |
| 41 class TouchSelectionControllerClientAura; | 39 class TouchSelectionControllerClientAura; |
| 42 | 40 |
| 43 // Provides an implementation of ui::EventHandler for use with | 41 // Provides an implementation of ui::EventHandler for use with |
| 44 // RenderWidgetHostViewBase. A delegate is required in order to provide platform | 42 // RenderWidgetHostViewBase. A delegate is required in order to provide platform |
| 45 // specific functionality. | 43 // specific functionality. |
| 46 // | 44 // |
| 47 // After processing events they will be forwarded to the provided | 45 // After processing events they will be forwarded to the provided |
| 48 // RenderWidgetHostImpl. | 46 // RenderWidgetHostImpl. |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 ui::EventHandler* popup_child_event_handler_; | 244 ui::EventHandler* popup_child_event_handler_; |
| 247 Delegate* const delegate_; | 245 Delegate* const delegate_; |
| 248 aura::Window* window_; | 246 aura::Window* window_; |
| 249 | 247 |
| 250 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewEventHandler); | 248 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewEventHandler); |
| 251 }; | 249 }; |
| 252 | 250 |
| 253 } // namespace content | 251 } // namespace content |
| 254 | 252 |
| 255 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_EVENT_HANDLER_H
_ | 253 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_EVENT_HANDLER_H
_ |
| OLD | NEW |