| OLD | NEW |
| 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 21 matching lines...) Expand all Loading... |
| 32 // move PaintLayerFlags to PaintPhase and rename it. Thus removing the need for | 32 // move PaintLayerFlags to PaintPhase and rename it. Thus removing the need for |
| 33 // this #include "core/paint/PaintLayerPaintingInfo.h" | 33 // this #include "core/paint/PaintLayerPaintingInfo.h" |
| 34 #include "core/paint/PaintLayerPaintingInfo.h" | 34 #include "core/paint/PaintLayerPaintingInfo.h" |
| 35 #include "core/paint/PaintPhase.h" | 35 #include "core/paint/PaintPhase.h" |
| 36 #include "platform/geometry/IntRect.h" | 36 #include "platform/geometry/IntRect.h" |
| 37 #include "platform/geometry/LayoutRect.h" | 37 #include "platform/geometry/LayoutRect.h" |
| 38 #include "platform/graphics/GraphicsContext.h" | 38 #include "platform/graphics/GraphicsContext.h" |
| 39 #include "platform/graphics/paint/CullRect.h" | 39 #include "platform/graphics/paint/CullRect.h" |
| 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 "platform/wtf/Allocator.h" |
| 43 #include "wtf/HashMap.h" | 43 #include "platform/wtf/HashMap.h" |
| 44 #include "wtf/ListHashSet.h" | 44 #include "platform/wtf/ListHashSet.h" |
| 45 | 45 |
| 46 #include <limits> | 46 #include <limits> |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class LayoutBoxModelObject; | 50 class LayoutBoxModelObject; |
| 51 | 51 |
| 52 struct CORE_EXPORT PaintInfo { | 52 struct CORE_EXPORT PaintInfo { |
| 53 USING_FAST_MALLOC(PaintInfo); | 53 USING_FAST_MALLOC(PaintInfo); |
| 54 | 54 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 const GlobalPaintFlags global_paint_flags_; | 133 const GlobalPaintFlags global_paint_flags_; |
| 134 | 134 |
| 135 // TODO(chrishtr): temporary while we implement CullRect everywhere. | 135 // TODO(chrishtr): temporary while we implement CullRect everywhere. |
| 136 friend class SVGPaintContext; | 136 friend class SVGPaintContext; |
| 137 friend class SVGShapePainter; | 137 friend class SVGShapePainter; |
| 138 }; | 138 }; |
| 139 | 139 |
| 140 } // namespace blink | 140 } // namespace blink |
| 141 | 141 |
| 142 #endif // PaintInfo_h | 142 #endif // PaintInfo_h |
| OLD | NEW |