| Index: third_party/WebKit/Source/core/layout/LayoutObjectChildList.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObjectChildList.h b/third_party/WebKit/Source/core/layout/LayoutObjectChildList.h
|
| index a8fd0f5fb1bacd61ddf95c6b5e66bf716618f90c..349a2ec7ee3d045f9a070814e712d5a460e04320 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObjectChildList.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObjectChildList.h
|
| @@ -45,11 +45,6 @@ public:
|
| LayoutObject* firstChild() const { return m_firstChild; }
|
| LayoutObject* lastChild() const { return m_lastChild; }
|
|
|
| - // FIXME: Temporary while LayoutBox still exists. Eventually this will just happen during insert/append/remove methods on the child list, and nobody
|
| - // will need to manipulate firstChild or lastChild directly.
|
| - void setFirstChild(LayoutObject* child) { m_firstChild = child; }
|
| - void setLastChild(LayoutObject* child) { m_lastChild = child; }
|
| -
|
| void destroyLeftoverChildren();
|
|
|
| LayoutObject* removeChildNode(LayoutObject* owner, LayoutObject*, bool notifyLayoutObject = true);
|
|
|