| 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_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 class Point; | 55 class Point; |
| 56 class Rect; | 56 class Rect; |
| 57 } | 57 } |
| 58 | 58 |
| 59 namespace ui { | 59 namespace ui { |
| 60 class InputMethod; | 60 class InputMethod; |
| 61 class LocatedEvent; | 61 class LocatedEvent; |
| 62 #if defined(OS_WIN) | 62 #if defined(OS_WIN) |
| 63 class OnScreenKeyboardObserver; | 63 class OnScreenKeyboardObserver; |
| 64 #endif | 64 #endif |
| 65 class TouchSelectionController; | |
| 66 } | 65 } |
| 67 | 66 |
| 68 namespace content { | 67 namespace content { |
| 69 #if defined(OS_WIN) | 68 #if defined(OS_WIN) |
| 70 class LegacyRenderWidgetHostHWND; | 69 class LegacyRenderWidgetHostHWND; |
| 71 #endif | 70 #endif |
| 72 | 71 |
| 73 class OverscrollController; | |
| 74 class RenderFrameHostImpl; | 72 class RenderFrameHostImpl; |
| 75 class RenderWidgetHostImpl; | 73 class RenderWidgetHostImpl; |
| 76 class RenderWidgetHostView; | 74 class RenderWidgetHostView; |
| 77 class TouchSelectionControllerClientAura; | 75 class TouchSelectionControllerClientAura; |
| 78 struct TextInputState; | 76 struct TextInputState; |
| 79 | 77 |
| 80 // RenderWidgetHostView class hierarchy described in render_widget_host_view.h. | 78 // RenderWidgetHostView class hierarchy described in render_widget_host_view.h. |
| 81 class CONTENT_EXPORT RenderWidgetHostViewAura | 79 class CONTENT_EXPORT RenderWidgetHostViewAura |
| 82 : public RenderWidgetHostViewBase, | 80 : public RenderWidgetHostViewBase, |
| 83 NON_EXPORTED_BASE(public RenderWidgetHostViewEventHandler::Delegate), | 81 NON_EXPORTED_BASE(public RenderWidgetHostViewEventHandler::Delegate), |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; | 599 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; |
| 602 | 600 |
| 603 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 601 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 604 | 602 |
| 605 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 603 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 606 }; | 604 }; |
| 607 | 605 |
| 608 } // namespace content | 606 } // namespace content |
| 609 | 607 |
| 610 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 608 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |