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

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

Issue 18601002: Add infrastructure for partial layouts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: define RenderObject::frameView in the header Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderFlexibleBox.h ('k') | Source/core/rendering/RenderFullScreen.h » ('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) 2011 Adobe Systems Incorporated. All rights reserved. 2 * Copyright (C) 2011 Adobe Systems Incorporated. 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 * 7 *
8 * 1. Redistributions of source code must retain the above 8 * 1. Redistributions of source code must retain the above
9 * copyright notice, this list of conditions and the following 9 * copyright notice, this list of conditions and the following
10 * disclaimer. 10 * disclaimer.
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 261
262 bool m_regionsInvalidated : 1; 262 bool m_regionsInvalidated : 1;
263 bool m_regionsHaveUniformLogicalWidth : 1; 263 bool m_regionsHaveUniformLogicalWidth : 1;
264 bool m_regionsHaveUniformLogicalHeight : 1; 264 bool m_regionsHaveUniformLogicalHeight : 1;
265 bool m_hasRegionsWithStyling : 1; 265 bool m_hasRegionsWithStyling : 1;
266 bool m_dispatchRegionLayoutUpdateEvent : 1; 266 bool m_dispatchRegionLayoutUpdateEvent : 1;
267 bool m_dispatchRegionOversetChangeEvent : 1; 267 bool m_dispatchRegionOversetChangeEvent : 1;
268 bool m_pageLogicalSizeChanged : 1; 268 bool m_pageLogicalSizeChanged : 1;
269 bool m_inConstrainedLayoutPhase : 1; 269 bool m_inConstrainedLayoutPhase : 1;
270 bool m_needsTwoPhasesLayout : 1; 270 bool m_needsTwoPhasesLayout : 1;
271
272 private:
273 virtual bool supportsPartialLayout() const OVERRIDE { return false; }
274
271 }; 275 };
272 276
273 inline RenderFlowThread* toRenderFlowThread(RenderObject* object) 277 inline RenderFlowThread* toRenderFlowThread(RenderObject* object)
274 { 278 {
275 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderFlowThread()); 279 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderFlowThread());
276 return static_cast<RenderFlowThread*>(object); 280 return static_cast<RenderFlowThread*>(object);
277 } 281 }
278 282
279 inline const RenderFlowThread* toRenderFlowThread(const RenderObject* object) 283 inline const RenderFlowThread* toRenderFlowThread(const RenderObject* object)
280 { 284 {
(...skipping 21 matching lines...) Expand all
302 }; 306 };
303 307
304 template <> struct ValueToString<RenderRegion*> { 308 template <> struct ValueToString<RenderRegion*> {
305 static String string(const RenderRegion* value) { return String::format("%p" , value); } 309 static String string(const RenderRegion* value) { return String::format("%p" , value); }
306 }; 310 };
307 #endif 311 #endif
308 312
309 } // namespace WebCore 313 } // namespace WebCore
310 314
311 #endif // RenderFlowThread_h 315 #endif // RenderFlowThread_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderFlexibleBox.h ('k') | Source/core/rendering/RenderFullScreen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698