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

Side by Side Diff: Source/core/rendering/LayoutState.h

Issue 143323014: *** DO NOT LAND *** Attempt to understand Regions complexity Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/LayerPaintingInfo.h ('k') | Source/core/rendering/LayoutState.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 18 matching lines...) Expand all
29 #include "core/rendering/ColumnInfo.h" 29 #include "core/rendering/ColumnInfo.h"
30 #include "platform/geometry/LayoutRect.h" 30 #include "platform/geometry/LayoutRect.h"
31 #include "wtf/HashMap.h" 31 #include "wtf/HashMap.h"
32 #include "wtf/Noncopyable.h" 32 #include "wtf/Noncopyable.h"
33 33
34 namespace WebCore { 34 namespace WebCore {
35 35
36 class RenderBlockFlow; 36 class RenderBlockFlow;
37 class RenderBox; 37 class RenderBox;
38 class RenderObject; 38 class RenderObject;
39 class RenderFlowThread;
40 class ShapeInsideInfo; 39 class ShapeInsideInfo;
41 40
42 class LayoutState { 41 class LayoutState {
43 WTF_MAKE_NONCOPYABLE(LayoutState); 42 WTF_MAKE_NONCOPYABLE(LayoutState);
44 public: 43 public:
45 LayoutState() 44 LayoutState()
46 : m_clipped(false) 45 : m_clipped(false)
47 , m_isPaginated(false) 46 , m_isPaginated(false)
48 , m_pageLogicalHeightChanged(false) 47 , m_pageLogicalHeightChanged(false)
49 #if !ASSERT_DISABLED 48 #if !ASSERT_DISABLED
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 LayoutSize m_lineGridPaginationOrigin; 137 LayoutSize m_lineGridPaginationOrigin;
139 138
140 #ifndef NDEBUG 139 #ifndef NDEBUG
141 RenderObject* m_renderer; 140 RenderObject* m_renderer;
142 #endif 141 #endif
143 }; 142 };
144 143
145 } // namespace WebCore 144 } // namespace WebCore
146 145
147 #endif // LayoutState_h 146 #endif // LayoutState_h
OLDNEW
« no previous file with comments | « Source/core/rendering/LayerPaintingInfo.h ('k') | Source/core/rendering/LayoutState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698