| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2006 Apple Computer, Inc. | 3 * Copyright (C) 2006 Apple Computer, Inc. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 LayoutState* m_layoutState; | 277 LayoutState* m_layoutState; |
| 278 unsigned m_layoutStateDisableCount; | 278 unsigned m_layoutStateDisableCount; |
| 279 OwnPtr<RenderLayerCompositor> m_compositor; | 279 OwnPtr<RenderLayerCompositor> m_compositor; |
| 280 OwnPtr<CustomFilterGlobalContext> m_customFilterGlobalContext; | 280 OwnPtr<CustomFilterGlobalContext> m_customFilterGlobalContext; |
| 281 OwnPtr<FlowThreadController> m_flowThreadController; | 281 OwnPtr<FlowThreadController> m_flowThreadController; |
| 282 RefPtr<IntervalArena> m_intervalArena; | 282 RefPtr<IntervalArena> m_intervalArena; |
| 283 | 283 |
| 284 RenderLazyBlock* m_firstLazyBlock; | 284 RenderLazyBlock* m_firstLazyBlock; |
| 285 RenderQuote* m_renderQuoteHead; | 285 RenderQuote* m_renderQuoteHead; |
| 286 unsigned m_renderCounterCount; | 286 unsigned m_renderCounterCount; |
| 287 |
| 288 bool m_selectionWasCaret; |
| 287 }; | 289 }; |
| 288 | 290 |
| 289 inline RenderView* toRenderView(RenderObject* object) | 291 inline RenderView* toRenderView(RenderObject* object) |
| 290 { | 292 { |
| 291 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderView()); | 293 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isRenderView()); |
| 292 return static_cast<RenderView*>(object); | 294 return static_cast<RenderView*>(object); |
| 293 } | 295 } |
| 294 | 296 |
| 295 inline const RenderView* toRenderView(const RenderObject* object) | 297 inline const RenderView* toRenderView(const RenderObject* object) |
| 296 { | 298 { |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 RenderObject::FlowThreadState m_flowThreadState; | 401 RenderObject::FlowThreadState m_flowThreadState; |
| 400 bool m_fragmenting; | 402 bool m_fragmenting; |
| 401 #ifndef NDEBUG | 403 #ifndef NDEBUG |
| 402 LayoutState* m_layoutState; | 404 LayoutState* m_layoutState; |
| 403 #endif | 405 #endif |
| 404 }; | 406 }; |
| 405 | 407 |
| 406 } // namespace WebCore | 408 } // namespace WebCore |
| 407 | 409 |
| 408 #endif // RenderView_h | 410 #endif // RenderView_h |
| OLD | NEW |