Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(509)

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_box.h

Issue 2230683003: [LayoutNG] Initial implementation of NGBoxIterator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: synced to the head Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/ng/ng_box.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_box.h b/third_party/WebKit/Source/core/layout/ng/ng_box.h
index e2a9e2c3468d32099c831a868dc95aff8a5c3d7a..e24618e900a28a3371950790b84bd25c3fb6971c 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_box.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_box.h
@@ -5,6 +5,7 @@
#ifndef NGBox_h
#define NGBox_h
+#include "core/layout/ng/ng_box_iterator.h"
#include "core/CoreExport.h"
#include "platform/heap/Handle.h"
@@ -21,15 +22,12 @@ class CORE_EXPORT NGBox final {
explicit NGBox(const LayoutObject* layoutObject)
: m_layoutObject(layoutObject) {}
+ NGBoxIterator iterator() { return NGBoxIterator(m_layoutObject); }
operator bool() const { return m_layoutObject; }
NGFragment* layout(const NGConstraintSpace&);
const ComputedStyle* style() const;
- // TODO(layout-ng): Returning a children iterator would be better here.
- const NGBox firstChild() const;
- const NGBox nextSibling() const;
-
private:
const LayoutObject* m_layoutObject;
};

Powered by Google App Engine
This is Rietveld 408576698