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 12 matching lines...) Expand all Loading... |
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 */ | 24 */ |
25 | 25 |
26 #ifndef LinkHighlight_h | 26 #ifndef LinkHighlight_h |
27 #define LinkHighlight_h | 27 #define LinkHighlight_h |
28 | 28 |
29 #include "platform/geometry/FloatPoint.h" | 29 #include "platform/geometry/FloatPoint.h" |
30 #include "platform/geometry/IntPoint.h" | 30 #include "platform/geometry/IntPoint.h" |
31 #include "platform/graphics/GraphicsLayer.h" | 31 #include "platform/graphics/GraphicsLayer.h" |
32 #include "platform/graphics/Path.h" | 32 #include "platform/graphics/Path.h" |
| 33 #include "platform/graphics/paint/DisplayItemClient.h" |
33 #include "public/platform/WebCompositorAnimationDelegate.h" | 34 #include "public/platform/WebCompositorAnimationDelegate.h" |
34 #include "public/platform/WebCompositorAnimationPlayer.h" | 35 #include "public/platform/WebCompositorAnimationPlayer.h" |
35 #include "public/platform/WebCompositorAnimationPlayerClient.h" | 36 #include "public/platform/WebCompositorAnimationPlayerClient.h" |
36 #include "public/platform/WebContentLayer.h" | 37 #include "public/platform/WebContentLayer.h" |
37 #include "public/platform/WebContentLayerClient.h" | 38 #include "public/platform/WebContentLayerClient.h" |
38 #include "public/platform/WebLayer.h" | 39 #include "public/platform/WebLayer.h" |
39 #include "wtf/OwnPtr.h" | 40 #include "wtf/OwnPtr.h" |
40 #include "wtf/Vector.h" | 41 #include "wtf/Vector.h" |
41 | 42 |
42 namespace blink { | 43 namespace blink { |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 OwnPtr<WebCompositorAnimationPlayer> m_compositorPlayer; | 97 OwnPtr<WebCompositorAnimationPlayer> m_compositorPlayer; |
97 | 98 |
98 bool m_geometryNeedsUpdate; | 99 bool m_geometryNeedsUpdate; |
99 bool m_isAnimating; | 100 bool m_isAnimating; |
100 double m_startTime; | 101 double m_startTime; |
101 }; | 102 }; |
102 | 103 |
103 } // namespace blink | 104 } // namespace blink |
104 | 105 |
105 #endif | 106 #endif |
OLD | NEW |