| Index: Source/core/rendering/RenderObject.cpp
|
| diff --git a/Source/core/rendering/RenderObject.cpp b/Source/core/rendering/RenderObject.cpp
|
| index 27896d5978ef96f3e9518c672c7e79dda38c75e2..2e6a4cc85675ad59b1ad064b47c08ceac9e978b3 100644
|
| --- a/Source/core/rendering/RenderObject.cpp
|
| +++ b/Source/core/rendering/RenderObject.cpp
|
| @@ -35,6 +35,7 @@
|
| #include "core/editing/EditingBoundary.h"
|
| #include "core/editing/FrameSelection.h"
|
| #include "core/editing/htmlediting.h"
|
| +#include "core/fetch/ResourceLoader.h"
|
| #include "core/html/HTMLAnchorElement.h"
|
| #include "core/html/HTMLElement.h"
|
| #include "core/html/HTMLHtmlElement.h"
|
| @@ -2822,6 +2823,20 @@ void RenderObject::layout()
|
| clearNeedsLayout();
|
| }
|
|
|
| +void RenderObject::didLayout(ResourceLoadPriorityOptimizer& priorityModifier)
|
| +{
|
| + for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
|
| + child->didLayout(priorityModifier);
|
| + }
|
| +}
|
| +
|
| +void RenderObject::didScroll(ResourceLoadPriorityOptimizer& priorityModifier)
|
| +{
|
| + for (RenderObject* child = firstChild(); child; child = child->nextSibling()) {
|
| + child->didScroll(priorityModifier);
|
| + }
|
| +}
|
| +
|
| void RenderObject::forceLayout()
|
| {
|
| setSelfNeedsLayout(true);
|
|
|