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

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

Issue 2649583002: [LayoutNG] Remove the ng_layout_coordinator and temporary LayoutSync method. (Closed)
Patch Set: rebase v2 Created 3 years, 11 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_layout_coordinator.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.h b/third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.h
deleted file mode 100644
index 3fea30e5962b0c390cdc31ee46e91a96e1b3aef0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/layout/ng/ng_layout_coordinator.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NGLayoutCoordinator_h
-#define NGLayoutCoordinator_h
-
-#include "core/CoreExport.h"
-#include "core/layout/ng/ng_layout_algorithm.h"
-#include "platform/heap/Handle.h"
-#include "wtf/Vector.h"
-
-namespace blink {
-
-class NGLayoutInputNode;
-class NGConstraintSpace;
-
-class CORE_EXPORT NGLayoutCoordinator final
- : public GarbageCollectedFinalized<NGLayoutCoordinator> {
- public:
- NGLayoutCoordinator(NGLayoutInputNode*, NGConstraintSpace*);
-
- bool Tick(NGPhysicalFragment**);
-
- DECLARE_TRACE()
-
- const HeapVector<Member<NGLayoutAlgorithm>>& GetAlgorithmStackForTesting()
- const {
- return layout_algorithms_;
- };
-
- private:
- HeapVector<Member<NGLayoutAlgorithm>> layout_algorithms_;
- Member<NGPhysicalFragment> fragment_;
-};
-}
-
-#endif

Powered by Google App Engine
This is Rietveld 408576698