| 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 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class RenderLayer; | 42 class RenderLayer; |
| 43 class RenderObject; | 43 class RenderObject; |
| 44 class Node; | 44 class Node; |
| 45 struct WebFloatRect; | 45 struct WebFloatRect; |
| 46 struct WebRect; | 46 struct WebRect; |
| 47 class WebViewImpl; | 47 class WebViewImpl; |
| 48 | 48 |
| 49 class LinkHighlight FINAL : public WebContentLayerClient, public WebCompositorAn
imationDelegate, blink::LinkHighlightClient { | 49 class LinkHighlight final : public WebContentLayerClient, public WebCompositorAn
imationDelegate, blink::LinkHighlightClient { |
| 50 public: | 50 public: |
| 51 static PassOwnPtr<LinkHighlight> create(Node*, WebViewImpl*); | 51 static PassOwnPtr<LinkHighlight> create(Node*, WebViewImpl*); |
| 52 virtual ~LinkHighlight(); | 52 virtual ~LinkHighlight(); |
| 53 | 53 |
| 54 WebContentLayer* contentLayer(); | 54 WebContentLayer* contentLayer(); |
| 55 WebLayer* clipLayer(); | 55 WebLayer* clipLayer(); |
| 56 void startHighlightAnimationIfNeeded(); | 56 void startHighlightAnimationIfNeeded(); |
| 57 void updateGeometry(); | 57 void updateGeometry(); |
| 58 | 58 |
| 59 // WebContentLayerClient implementation. | 59 // WebContentLayerClient implementation. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 GraphicsLayer* m_currentGraphicsLayer; | 92 GraphicsLayer* m_currentGraphicsLayer; |
| 93 | 93 |
| 94 bool m_geometryNeedsUpdate; | 94 bool m_geometryNeedsUpdate; |
| 95 bool m_isAnimating; | 95 bool m_isAnimating; |
| 96 double m_startTime; | 96 double m_startTime; |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 } // namespace blink | 99 } // namespace blink |
| 100 | 100 |
| 101 #endif | 101 #endif |
| OLD | NEW |