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 23 matching lines...) Expand all Loading... |
34 #include "public/platform/WebContentLayer.h" | 34 #include "public/platform/WebContentLayer.h" |
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 | 38 |
39 namespace WebCore { | 39 namespace WebCore { |
40 class RenderLayer; | 40 class RenderLayer; |
41 class Node; | 41 class Node; |
42 } | 42 } |
43 | 43 |
44 namespace WebKit { | 44 namespace blink { |
45 | 45 |
46 struct WebFloatRect; | 46 struct WebFloatRect; |
47 struct WebRect; | 47 struct WebRect; |
48 class WebViewImpl; | 48 class WebViewImpl; |
49 | 49 |
50 class LinkHighlight : public WebContentLayerClient, public WebAnimationDelegate,
WebCore::LinkHighlightClient { | 50 class LinkHighlight : public WebContentLayerClient, public WebAnimationDelegate,
WebCore::LinkHighlightClient { |
51 public: | 51 public: |
52 static PassOwnPtr<LinkHighlight> create(WebCore::Node*, WebViewImpl*); | 52 static PassOwnPtr<LinkHighlight> create(WebCore::Node*, WebViewImpl*); |
53 virtual ~LinkHighlight(); | 53 virtual ~LinkHighlight(); |
54 | 54 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 | 88 |
89 RefPtr<WebCore::Node> m_node; | 89 RefPtr<WebCore::Node> m_node; |
90 WebViewImpl* m_owningWebViewImpl; | 90 WebViewImpl* m_owningWebViewImpl; |
91 WebCore::GraphicsLayer* m_currentGraphicsLayer; | 91 WebCore::GraphicsLayer* m_currentGraphicsLayer; |
92 | 92 |
93 bool m_geometryNeedsUpdate; | 93 bool m_geometryNeedsUpdate; |
94 bool m_isAnimating; | 94 bool m_isAnimating; |
95 double m_startTime; | 95 double m_startTime; |
96 }; | 96 }; |
97 | 97 |
98 } // namespace WebKit | 98 } // namespace blink |
99 | 99 |
100 #endif | 100 #endif |
OLD | NEW |