| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |