| 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, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r
ights 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 15 matching lines...) Expand all Loading... |
| 26 #ifndef SKY_ENGINE_CORE_RENDERING_RENDEROBJECT_H_ | 26 #ifndef SKY_ENGINE_CORE_RENDERING_RENDEROBJECT_H_ |
| 27 #define SKY_ENGINE_CORE_RENDERING_RENDEROBJECT_H_ | 27 #define SKY_ENGINE_CORE_RENDERING_RENDEROBJECT_H_ |
| 28 | 28 |
| 29 #include "sky/engine/core/dom/Document.h" | 29 #include "sky/engine/core/dom/Document.h" |
| 30 #include "sky/engine/core/dom/DocumentLifecycle.h" | 30 #include "sky/engine/core/dom/DocumentLifecycle.h" |
| 31 #include "sky/engine/core/dom/Element.h" | 31 #include "sky/engine/core/dom/Element.h" |
| 32 #include "sky/engine/core/editing/TextAffinity.h" | 32 #include "sky/engine/core/editing/TextAffinity.h" |
| 33 #include "sky/engine/core/fetch/ImageResourceClient.h" | 33 #include "sky/engine/core/fetch/ImageResourceClient.h" |
| 34 #include "sky/engine/core/html/HTMLElement.h" | 34 #include "sky/engine/core/html/HTMLElement.h" |
| 35 #include "sky/engine/core/rendering/HitTestRequest.h" | 35 #include "sky/engine/core/rendering/HitTestRequest.h" |
| 36 #include "sky/engine/core/rendering/PaintPhase.h" | |
| 37 #include "sky/engine/core/rendering/RenderObjectChildList.h" | 36 #include "sky/engine/core/rendering/RenderObjectChildList.h" |
| 38 #include "sky/engine/core/rendering/SubtreeLayoutScope.h" | 37 #include "sky/engine/core/rendering/SubtreeLayoutScope.h" |
| 39 #include "sky/engine/core/rendering/style/RenderStyle.h" | 38 #include "sky/engine/core/rendering/style/RenderStyle.h" |
| 40 #include "sky/engine/core/rendering/style/StyleInheritedData.h" | 39 #include "sky/engine/core/rendering/style/StyleInheritedData.h" |
| 41 #include "sky/engine/platform/geometry/FloatQuad.h" | 40 #include "sky/engine/platform/geometry/FloatQuad.h" |
| 42 #include "sky/engine/platform/geometry/LayoutRect.h" | 41 #include "sky/engine/platform/geometry/LayoutRect.h" |
| 43 #include "sky/engine/platform/transforms/TransformationMatrix.h" | 42 #include "sky/engine/platform/transforms/TransformationMatrix.h" |
| 44 | 43 |
| 45 namespace blink { | 44 namespace blink { |
| 46 | 45 |
| (...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 918 void showTree(const blink::RenderObject*); | 917 void showTree(const blink::RenderObject*); |
| 919 void showLineTree(const blink::RenderObject*); | 918 void showLineTree(const blink::RenderObject*); |
| 920 void showRenderTree(const blink::RenderObject* object1); | 919 void showRenderTree(const blink::RenderObject* object1); |
| 921 // We don't make object2 an optional parameter so that showRenderTree | 920 // We don't make object2 an optional parameter so that showRenderTree |
| 922 // can be called from gdb easily. | 921 // can be called from gdb easily. |
| 923 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); | 922 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec
t* object2); |
| 924 | 923 |
| 925 #endif | 924 #endif |
| 926 | 925 |
| 927 #endif // SKY_ENGINE_CORE_RENDERING_RENDEROBJECT_H_ | 926 #endif // SKY_ENGINE_CORE_RENDERING_RENDEROBJECT_H_ |
| OLD | NEW |