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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
7 * reserved. 7 * reserved.
8 * Copyright (C) 2009 Google Inc. All rights reserved. 8 * Copyright (C) 2009 Google Inc. All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 29 matching lines...) Expand all
40 #include "platform/graphics/paint/DisplayItem.h" 40 #include "platform/graphics/paint/DisplayItem.h"
41 #include "platform/transforms/AffineTransform.h" 41 #include "platform/transforms/AffineTransform.h"
42 #include "wtf/Allocator.h" 42 #include "wtf/Allocator.h"
43 #include "wtf/HashMap.h" 43 #include "wtf/HashMap.h"
44 #include "wtf/ListHashSet.h" 44 #include "wtf/ListHashSet.h"
45 45
46 #include <limits> 46 #include <limits>
47 47
48 namespace blink { 48 namespace blink {
49 49
50 class LayoutInline;
51 class LayoutBoxModelObject; 50 class LayoutBoxModelObject;
52 class LayoutObject;
53 class PaintInvalidationState;
54 51
55 struct CORE_EXPORT PaintInfo { 52 struct CORE_EXPORT PaintInfo {
56 PaintInfo(GraphicsContext& newContext, 53 PaintInfo(GraphicsContext& newContext,
57 const IntRect& cullRect, 54 const IntRect& cullRect,
58 PaintPhase newPhase, 55 PaintPhase newPhase,
59 GlobalPaintFlags globalPaintFlags, 56 GlobalPaintFlags globalPaintFlags,
60 PaintLayerFlags paintFlags, 57 PaintLayerFlags paintFlags,
61 const LayoutBoxModelObject* newPaintContainer = nullptr) 58 const LayoutBoxModelObject* newPaintContainer = nullptr)
62 : context(newContext), 59 : context(newContext),
63 phase(newPhase), 60 phase(newPhase),
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 const GlobalPaintFlags m_globalPaintFlags; 126 const GlobalPaintFlags m_globalPaintFlags;
130 127
131 // TODO(chrishtr): temporary while we implement CullRect everywhere. 128 // TODO(chrishtr): temporary while we implement CullRect everywhere.
132 friend class SVGPaintContext; 129 friend class SVGPaintContext;
133 friend class SVGShapePainter; 130 friend class SVGShapePainter;
134 }; 131 };
135 132
136 } // namespace blink 133 } // namespace blink
137 134
138 #endif // PaintInfo_h 135 #endif // PaintInfo_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698