| 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 RenderViewHost; | |
| 37 class RenderWidgetHostImpl; | 36 class RenderWidgetHostImpl; |
| 38 class RenderWidgetHostViewBase; | 37 class RenderWidgetHostViewBase; |
| 39 class TouchSelectionControllerClientAura; | 38 class TouchSelectionControllerClientAura; |
| 40 | 39 |
| 41 // Provides an implementation of ui::EventHandler for use with | 40 // Provides an implementation of ui::EventHandler for use with |
| 42 // RenderWidgetHostViewBase. A delegate is required in order to provide platform | 41 // RenderWidgetHostViewBase. A delegate is required in order to provide platform |
| 43 // specific functionality. | 42 // specific functionality. |
| 44 // | 43 // |
| 45 // After processing events they will be forwarded to the provided | 44 // After processing events they will be forwarded to the provided |
| 46 // RenderWidgetHostImpl. | 45 // RenderWidgetHostImpl. |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 ui::EventHandler* popup_child_event_handler_; | 243 ui::EventHandler* popup_child_event_handler_; |
| 245 Delegate* const delegate_; | 244 Delegate* const delegate_; |
| 246 aura::Window* window_; | 245 aura::Window* window_; |
| 247 | 246 |
| 248 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewEventHandler); | 247 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewEventHandler); |
| 249 }; | 248 }; |
| 250 | 249 |
| 251 } // namespace content | 250 } // namespace content |
| 252 | 251 |
| 253 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_EVENT_HANDLER_H
_ | 252 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_EVENT_HANDLER_H
_ |
| OLD | NEW |