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

Side by Side Diff: third_party/WebKit/Source/core/layout/ng/ng_constraint_space.h

Issue 2328243002: [LayoutNG] Remove unnecessary #inclusions of LayoutObject and derived class definitions. (Closed)
Patch Set: Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NGConstraintSpace_h 5 #ifndef NGConstraintSpace_h
6 #define NGConstraintSpace_h 6 #define NGConstraintSpace_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/layout/LayoutBox.h"
10 #include "core/layout/ng/ng_physical_constraint_space.h" 9 #include "core/layout/ng/ng_physical_constraint_space.h"
11 #include "core/layout/ng/ng_writing_mode.h" 10 #include "core/layout/ng/ng_writing_mode.h"
12 #include "platform/heap/Handle.h" 11 #include "platform/heap/Handle.h"
13 #include "wtf/text/WTFString.h" 12 #include "wtf/text/WTFString.h"
14 #include "wtf/Vector.h" 13 #include "wtf/Vector.h"
15 14
16 namespace blink { 15 namespace blink {
17 16
18 class LayoutBox; 17 class LayoutBox;
19 class NGFragment; 18 class NGFragment;
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 }; 119 };
121 120
122 inline std::ostream& operator<<(std::ostream& stream, 121 inline std::ostream& operator<<(std::ostream& stream,
123 const NGConstraintSpace& value) { 122 const NGConstraintSpace& value) {
124 return stream << value.toString(); 123 return stream << value.toString();
125 } 124 }
126 125
127 } // namespace blink 126 } // namespace blink
128 127
129 #endif // NGConstraintSpace_h 128 #endif // NGConstraintSpace_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698