| 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
reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. |
| 7 * Copyright (C) 2009 Google Inc. All rights reserved. | 7 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * | 23 * |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef PaintInfo_h | 26 #ifndef PaintInfo_h |
| 27 #define PaintInfo_h | 27 #define PaintInfo_h |
| 28 | 28 |
| 29 #include "core/paint/PaintPhase.h" | 29 #include "core/paint/PaintPhase.h" |
| 30 #include "platform/geometry/IntRect.h" | 30 #include "platform/geometry/IntRect.h" |
| 31 #include "platform/geometry/LayoutRect.h" | 31 #include "platform/geometry/LayoutRect.h" |
| 32 #include "platform/graphics/GraphicsContext.h" | 32 #include "platform/graphics/GraphicsContext.h" |
| 33 #include "platform/graphics/GraphicsContextStateSaver.h" | |
| 34 #include "platform/graphics/paint/DisplayItem.h" | 33 #include "platform/graphics/paint/DisplayItem.h" |
| 35 #include "platform/transforms/AffineTransform.h" | 34 #include "platform/transforms/AffineTransform.h" |
| 36 #include "wtf/HashMap.h" | 35 #include "wtf/HashMap.h" |
| 37 #include "wtf/ListHashSet.h" | 36 #include "wtf/ListHashSet.h" |
| 38 | 37 |
| 39 #include <limits> | 38 #include <limits> |
| 40 | 39 |
| 41 namespace blink { | 40 namespace blink { |
| 42 | 41 |
| 43 class LayoutInline; | 42 class LayoutInline; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 LayoutObject* paintingRoot; // used to draw just one element and its visual
kids | 105 LayoutObject* paintingRoot; // used to draw just one element and its visual
kids |
| 107 | 106 |
| 108 private: | 107 private: |
| 109 const LayoutBoxModelObject* m_paintContainer; // the box model object that o
riginates the current painting | 108 const LayoutBoxModelObject* m_paintContainer; // the box model object that o
riginates the current painting |
| 110 ListHashSet<LayoutInline*>* m_outlineObjects; // used to list outlines that
should be painted by a block with inline children | 109 ListHashSet<LayoutInline*>* m_outlineObjects; // used to list outlines that
should be painted by a block with inline children |
| 111 }; | 110 }; |
| 112 | 111 |
| 113 } // namespace blink | 112 } // namespace blink |
| 114 | 113 |
| 115 #endif // PaintInfo_h | 114 #endif // PaintInfo_h |
| OLD | NEW |