Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(632)

Side by Side Diff: Source/web/LinkHighlight.h

Issue 1238123004: Slimming Paint phase 2 compositing algorithm plumbing & skeleton display list API. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698