Chromium Code Reviews| Index: Source/web/LinkHighlight.h |
| diff --git a/Source/web/LinkHighlight.h b/Source/web/LinkHighlight.h |
| index 5a3b7b774b7e7277e3a9b7c00d19bf8cd0a82260..227695552f195e6f589f816a4f9a4ff55d0ab5b9 100644 |
| --- a/Source/web/LinkHighlight.h |
| +++ b/Source/web/LinkHighlight.h |
| @@ -28,6 +28,7 @@ |
| #include "platform/geometry/FloatPoint.h" |
| #include "platform/geometry/IntPoint.h" |
| +#include "platform/graphics/DisplayList.h" |
|
esprehn
2014/09/06 01:29:17
Can we forward declare this instead?
Stephen Chennney
2014/09/08 17:42:09
Done.
|
| #include "platform/graphics/GraphicsLayer.h" |
| #include "platform/graphics/Path.h" |
| #include "public/platform/WebCompositorAnimationDelegate.h" |
| @@ -39,9 +40,9 @@ |
| namespace blink { |
| +class Node; |
| class RenderLayer; |
| class RenderObject; |
| -class Node; |
| struct WebFloatRect; |
| struct WebRect; |
| class WebViewImpl; |
| @@ -86,6 +87,7 @@ private: |
| OwnPtr<WebContentLayer> m_contentLayer; |
| OwnPtr<WebLayer> m_clipLayer; |
| Path m_path; |
| + RefPtr<DisplayList> m_displayList; |
| RefPtrWillBePersistent<Node> m_node; |
| WebViewImpl* m_owningWebViewImpl; |