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

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

Issue 2623423003: [LayoutNG] Put #includes in alphabetical order. (Closed)
Patch Set: 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 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 NGFragmentBuilder_h 5 #ifndef NGFragmentBuilder_h
6 #define NGFragmentBuilder_h 6 #define NGFragmentBuilder_h
7 7
8 #include "core/layout/ng/ng_physical_fragment.h"
8 #include "core/layout/ng/ng_units.h" 9 #include "core/layout/ng/ng_units.h"
9 #include "core/layout/ng/ng_physical_fragment.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class NGFragment; 13 class NGFragment;
14 class NGInlineNode; 14 class NGInlineNode;
15 class NGPhysicalBoxFragment; 15 class NGPhysicalBoxFragment;
16 class NGPhysicalTextFragment; 16 class NGPhysicalTextFragment;
17 17
18 class CORE_EXPORT NGFragmentBuilder final 18 class CORE_EXPORT NGFragmentBuilder final
19 : public GarbageCollectedFinalized<NGFragmentBuilder> { 19 : public GarbageCollectedFinalized<NGFragmentBuilder> {
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 WeakBoxList out_of_flow_descendant_candidates_; 130 WeakBoxList out_of_flow_descendant_candidates_;
131 Vector<OutOfFlowPlacement> out_of_flow_candidate_placements_; 131 Vector<OutOfFlowPlacement> out_of_flow_candidate_placements_;
132 132
133 WeakBoxList out_of_flow_descendants_; 133 WeakBoxList out_of_flow_descendants_;
134 Vector<NGStaticPosition> out_of_flow_positions_; 134 Vector<NGStaticPosition> out_of_flow_positions_;
135 }; 135 };
136 136
137 } // namespace blink 137 } // namespace blink
138 138
139 #endif // NGFragmentBuilder 139 #endif // NGFragmentBuilder
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698