| 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 WebFrameWidgetBase_h | 5 #ifndef WebFrameWidgetBase_h |
| 6 #define WebFrameWidgetBase_h | 6 #define WebFrameWidgetBase_h |
| 7 | 7 |
| 8 #include "core/clipboard/DataObject.h" | 8 #include "core/clipboard/DataObject.h" |
| 9 #include "platform/UserGestureIndicator.h" | 9 #include "platform/UserGestureIndicator.h" |
| 10 #include "platform/wtf/Assertions.h" |
| 10 #include "public/platform/WebDragData.h" | 11 #include "public/platform/WebDragData.h" |
| 11 #include "public/web/WebFrameWidget.h" | 12 #include "public/web/WebFrameWidget.h" |
| 12 #include "wtf/Assertions.h" | |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 class AnimationWorkletProxyClient; | 16 class AnimationWorkletProxyClient; |
| 17 class CompositorAnimationHost; | 17 class CompositorAnimationHost; |
| 18 class CompositorWorkerProxyClient; | 18 class CompositorWorkerProxyClient; |
| 19 class GraphicsLayer; | 19 class GraphicsLayer; |
| 20 class WebImage; | 20 class WebImage; |
| 21 class WebLayer; | 21 class WebLayer; |
| 22 class WebLayerTreeView; | 22 class WebLayerTreeView; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 RefPtr<UserGestureToken> m_pointerLockGestureToken; | 124 RefPtr<UserGestureToken> m_pointerLockGestureToken; |
| 125 | 125 |
| 126 friend class WebViewImpl; | 126 friend class WebViewImpl; |
| 127 }; | 127 }; |
| 128 | 128 |
| 129 DEFINE_TYPE_CASTS(WebFrameWidgetBase, WebFrameWidget, widget, true, true); | 129 DEFINE_TYPE_CASTS(WebFrameWidgetBase, WebFrameWidget, widget, true, true); |
| 130 | 130 |
| 131 } // namespace blink | 131 } // namespace blink |
| 132 | 132 |
| 133 #endif | 133 #endif |
| OLD | NEW |