OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 9 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
10 | 10 |
11 namespace content { | 11 namespace content { |
12 | 12 |
13 class RenderWidgetHost; | 13 class RenderWidgetHost; |
14 class RenderWidgetHostImpl; | 14 class RenderWidgetHostImpl; |
15 struct NativeWebKeyboardEvent; | 15 struct NativeWebKeyboardEvent; |
16 | 16 |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 // The platform view for this RenderWidgetHostView. | 123 // The platform view for this RenderWidgetHostView. |
124 // RenderWidgetHostViewMus mostly only cares about stuff related to | 124 // RenderWidgetHostViewMus mostly only cares about stuff related to |
125 // compositing, the rest are directly forwared to this |platform_view_|. | 125 // compositing, the rest are directly forwared to this |platform_view_|. |
126 base::WeakPtr<RenderWidgetHostViewBase> platform_view_; | 126 base::WeakPtr<RenderWidgetHostViewBase> platform_view_; |
127 | 127 |
128 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMus); | 128 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMus); |
129 }; | 129 }; |
130 | 130 |
131 } // namespace content | 131 } // namespace content |
132 | 132 |
133 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_ | 133 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_ |
OLD | NEW |