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

Side by Side Diff: third_party/WebKit/Source/core/paint/BoxPainter.h

Issue 2580793005: Split the CSSParserContext class out of CSSParserMode into its own file. (Closed)
Patch Set: one extra missing include Created 4 years 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
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 BoxPainter_h 5 #ifndef BoxPainter_h
6 #define BoxPainter_h 6 #define BoxPainter_h
7 7
8 #include "core/layout/BackgroundBleedAvoidance.h" 8 #include "core/layout/BackgroundBleedAvoidance.h"
9 #include "core/style/ShadowData.h" 9 #include "core/style/ShadowData.h"
10 #include "platform/geometry/LayoutSize.h" 10 #include "platform/geometry/LayoutSize.h"
11 #include "platform/graphics/GraphicsTypes.h" 11 #include "platform/graphics/GraphicsTypes.h"
12 #include "third_party/skia/include/core/SkBlendMode.h" 12 #include "third_party/skia/include/core/SkBlendMode.h"
13 #include "wtf/Allocator.h" 13 #include "wtf/Allocator.h"
14 14
15 namespace blink { 15 namespace blink {
16 16
17 class ComputedStyle; 17 class ComputedStyle;
18 class Document;
18 class FillLayer; 19 class FillLayer;
19 class FloatRoundedRect; 20 class FloatRoundedRect;
20 class GraphicsContext; 21 class GraphicsContext;
21 class Image; 22 class Image;
22 class InlineFlowBox; 23 class InlineFlowBox;
23 class LayoutPoint; 24 class LayoutPoint;
24 class LayoutRect; 25 class LayoutRect;
25 class LayoutBoxModelObject; 26 class LayoutBoxModelObject;
26 class NinePieceImage; 27 class NinePieceImage;
27 struct PaintInfo; 28 struct PaintInfo;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 const LayoutRect&, 123 const LayoutRect&,
123 const Color& backgroundColor, 124 const Color& backgroundColor,
124 BackgroundBleedAvoidance = BackgroundBleedNone); 125 BackgroundBleedAvoidance = BackgroundBleedNone);
125 126
126 const LayoutBox& m_layoutBox; 127 const LayoutBox& m_layoutBox;
127 }; 128 };
128 129
129 } // namespace blink 130 } // namespace blink
130 131
131 #endif 132 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698