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

Side by Side Diff: Source/platform/graphics/paint/DisplayItem.h

Issue 834173003: Change about caret painting in slimming paint mode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add tests Created 5 years, 11 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DisplayItem_h 5 #ifndef DisplayItem_h
6 #define DisplayItem_h 6 #define DisplayItem_h
7 7
8 #include "platform/PlatformExport.h" 8 #include "platform/PlatformExport.h"
9 #include "wtf/Assertions.h" 9 #include "wtf/Assertions.h"
10 #include "wtf/PassOwnPtr.h" 10 #include "wtf/PassOwnPtr.h"
(...skipping 22 matching lines...) Expand all
33 DrawingPaintPhaseFloat = 3, 33 DrawingPaintPhaseFloat = 3,
34 DrawingPaintPhaseForeground = 4, 34 DrawingPaintPhaseForeground = 4,
35 DrawingPaintPhaseOutline = 5, 35 DrawingPaintPhaseOutline = 5,
36 DrawingPaintPhaseChildOutlines = 6, 36 DrawingPaintPhaseChildOutlines = 6,
37 DrawingPaintPhaseSelfOutline = 7, 37 DrawingPaintPhaseSelfOutline = 7,
38 DrawingPaintPhaseSelection = 8, 38 DrawingPaintPhaseSelection = 8,
39 DrawingPaintPhaseCollapsedTableBorders = 9, 39 DrawingPaintPhaseCollapsedTableBorders = 9,
40 DrawingPaintPhaseTextClip = 10, 40 DrawingPaintPhaseTextClip = 10,
41 DrawingPaintPhaseMask = 11, 41 DrawingPaintPhaseMask = 11,
42 DrawingPaintPhaseClippingMask = 12, 42 DrawingPaintPhaseClippingMask = 12,
43 DrawingPaintPhaseCaret = 13,
43 ClipLayerOverflowControls, 44 ClipLayerOverflowControls,
44 ClipLayerBackground, 45 ClipLayerBackground,
45 ClipLayerParent, 46 ClipLayerParent,
46 ClipLayerFilter, 47 ClipLayerFilter,
47 ClipLayerForeground, 48 ClipLayerForeground,
48 ClipLayerFragmentFloat, 49 ClipLayerFragmentFloat,
49 ClipLayerFragmentForeground, 50 ClipLayerFragmentForeground,
50 ClipLayerFragmentChildOutline, 51 ClipLayerFragmentChildOutline,
51 ClipLayerFragmentOutline, 52 ClipLayerFragmentOutline,
52 ClipLayerFragmentMask, 53 ClipLayerFragmentMask,
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 const Type type; 131 const Type type;
131 } m_id; 132 } m_id;
132 #ifndef NDEBUG 133 #ifndef NDEBUG
133 WTF::String m_clientDebugString; 134 WTF::String m_clientDebugString;
134 #endif 135 #endif
135 }; 136 };
136 137
137 } 138 }
138 139
139 #endif // DisplayItem_h 140 #endif // DisplayItem_h
OLDNEW
« no previous file with comments | « Source/platform/graphics/ContentLayerDelegate.cpp ('k') | Source/platform/graphics/paint/DisplayItem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698