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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 #include "ui/gfx/geometry/rect.h" | 43 #include "ui/gfx/geometry/rect.h" |
44 #include "ui/gfx/selection_bound.h" | 44 #include "ui/gfx/selection_bound.h" |
45 #include "ui/wm/public/activation_delegate.h" | 45 #include "ui/wm/public/activation_delegate.h" |
46 | 46 |
47 namespace aura { | 47 namespace aura { |
48 namespace client { | 48 namespace client { |
49 class ScopedTooltipDisabler; | 49 class ScopedTooltipDisabler; |
50 } | 50 } |
51 } | 51 } |
52 | 52 |
53 namespace cc { | |
54 class CopyOutputRequest; | |
55 class CopyOutputResult; | |
56 } | |
57 | |
58 namespace gfx { | 53 namespace gfx { |
59 class Canvas; | |
60 class Display; | 54 class Display; |
61 class Point; | 55 class Point; |
62 class Rect; | 56 class Rect; |
63 } | 57 } |
64 | 58 |
65 namespace gpu { | |
66 struct Mailbox; | |
67 } | |
68 | |
69 namespace ui { | 59 namespace ui { |
70 class CompositorLock; | |
71 class InputMethod; | 60 class InputMethod; |
72 class LocatedEvent; | 61 class LocatedEvent; |
73 #if defined(OS_WIN) | 62 #if defined(OS_WIN) |
74 class OnScreenKeyboardObserver; | 63 class OnScreenKeyboardObserver; |
75 #endif | 64 #endif |
76 class Texture; | |
77 class TouchSelectionController; | 65 class TouchSelectionController; |
78 } | 66 } |
79 | 67 |
80 namespace content { | 68 namespace content { |
81 #if defined(OS_WIN) | 69 #if defined(OS_WIN) |
82 class LegacyRenderWidgetHostHWND; | 70 class LegacyRenderWidgetHostHWND; |
83 #endif | 71 #endif |
84 | 72 |
85 class OverscrollController; | 73 class OverscrollController; |
86 class RenderFrameHostImpl; | 74 class RenderFrameHostImpl; |
87 class RenderViewHostDelegateView; | |
88 class RenderWidgetHostImpl; | 75 class RenderWidgetHostImpl; |
89 class RenderWidgetHostView; | 76 class RenderWidgetHostView; |
90 class TouchSelectionControllerClientAura; | 77 class TouchSelectionControllerClientAura; |
91 struct TextInputState; | 78 struct TextInputState; |
92 | 79 |
93 // RenderWidgetHostView class hierarchy described in render_widget_host_view.h. | 80 // RenderWidgetHostView class hierarchy described in render_widget_host_view.h. |
94 class CONTENT_EXPORT RenderWidgetHostViewAura | 81 class CONTENT_EXPORT RenderWidgetHostViewAura |
95 : public RenderWidgetHostViewBase, | 82 : public RenderWidgetHostViewBase, |
96 NON_EXPORTED_BASE(public RenderWidgetHostViewEventHandler::Delegate), | 83 NON_EXPORTED_BASE(public RenderWidgetHostViewEventHandler::Delegate), |
97 public DelegatedFrameHostClient, | 84 public DelegatedFrameHostClient, |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
614 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; | 601 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; |
615 | 602 |
616 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 603 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
617 | 604 |
618 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 605 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
619 }; | 606 }; |
620 | 607 |
621 } // namespace content | 608 } // namespace content |
622 | 609 |
623 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 610 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |