| 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_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_ |
| 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace ui { | 26 namespace ui { |
| 27 class DropTargetEvent; | 27 class DropTargetEvent; |
| 28 class TouchSelectionController; | 28 class TouchSelectionController; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace content { | 31 namespace content { |
| 32 class GestureNavSimple; | 32 class GestureNavSimple; |
| 33 class OverscrollNavigationOverlay; | 33 class OverscrollNavigationOverlay; |
| 34 class RenderWidgetHostImpl; | |
| 35 class RenderWidgetHostViewAura; | 34 class RenderWidgetHostViewAura; |
| 36 class ShadowLayerDelegate; | |
| 37 class TouchSelectionControllerClientAura; | 35 class TouchSelectionControllerClientAura; |
| 38 class WebContentsViewDelegate; | 36 class WebContentsViewDelegate; |
| 39 class WebContentsImpl; | 37 class WebContentsImpl; |
| 40 class WebDragDestDelegate; | 38 class WebDragDestDelegate; |
| 41 | 39 |
| 42 class CONTENT_EXPORT WebContentsViewAura | 40 class CONTENT_EXPORT WebContentsViewAura |
| 43 : NON_EXPORTED_BASE(public WebContentsView), | 41 : NON_EXPORTED_BASE(public WebContentsView), |
| 44 public RenderViewHostDelegateView, | 42 public RenderViewHostDelegateView, |
| 45 public OverscrollControllerDelegate, | 43 public OverscrollControllerDelegate, |
| 46 public aura::WindowDelegate, | 44 public aura::WindowDelegate, |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 std::unique_ptr<GestureNavSimple> gesture_nav_simple_; | 211 std::unique_ptr<GestureNavSimple> gesture_nav_simple_; |
| 214 | 212 |
| 215 bool init_rwhv_with_null_parent_for_testing_; | 213 bool init_rwhv_with_null_parent_for_testing_; |
| 216 | 214 |
| 217 DISALLOW_COPY_AND_ASSIGN(WebContentsViewAura); | 215 DISALLOW_COPY_AND_ASSIGN(WebContentsViewAura); |
| 218 }; | 216 }; |
| 219 | 217 |
| 220 } // namespace content | 218 } // namespace content |
| 221 | 219 |
| 222 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_ | 220 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_AURA_H_ |
| OLD | NEW |