| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "public/platform/WebContentLayerClient.h" | 35 #include "public/platform/WebContentLayerClient.h" |
| 36 #include "public/platform/WebLayer.h" | 36 #include "public/platform/WebLayer.h" |
| 37 #include "wtf/OwnPtr.h" | 37 #include "wtf/OwnPtr.h" |
| 38 #include "wtf/Vector.h" | 38 #include "wtf/Vector.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class DisplayList; | 42 class DisplayList; |
| 43 class Node; | 43 class Node; |
| 44 class RenderLayer; | 44 class RenderLayer; |
| 45 class RenderObject; | |
| 46 struct WebFloatRect; | |
| 47 struct WebRect; | 45 struct WebRect; |
| 48 class WebViewImpl; | 46 class WebViewImpl; |
| 49 | 47 |
| 50 class LinkHighlight final : public WebContentLayerClient, public WebCompositorAn
imationDelegate, blink::LinkHighlightClient { | 48 class LinkHighlight final : public WebContentLayerClient, public WebCompositorAn
imationDelegate, blink::LinkHighlightClient { |
| 51 public: | 49 public: |
| 52 static PassOwnPtr<LinkHighlight> create(Node*, WebViewImpl*); | 50 static PassOwnPtr<LinkHighlight> create(Node*, WebViewImpl*); |
| 53 virtual ~LinkHighlight(); | 51 virtual ~LinkHighlight(); |
| 54 | 52 |
| 55 WebContentLayer* contentLayer(); | 53 WebContentLayer* contentLayer(); |
| 56 WebLayer* clipLayer(); | 54 WebLayer* clipLayer(); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 GraphicsLayer* m_currentGraphicsLayer; | 91 GraphicsLayer* m_currentGraphicsLayer; |
| 94 | 92 |
| 95 bool m_geometryNeedsUpdate; | 93 bool m_geometryNeedsUpdate; |
| 96 bool m_isAnimating; | 94 bool m_isAnimating; |
| 97 double m_startTime; | 95 double m_startTime; |
| 98 }; | 96 }; |
| 99 | 97 |
| 100 } // namespace blink | 98 } // namespace blink |
| 101 | 99 |
| 102 #endif | 100 #endif |
| OLD | NEW |