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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 #ifndef NDEBUG | 268 #ifndef NDEBUG |
269 void checkLayoutState(const LayoutState&); | 269 void checkLayoutState(const LayoutState&); |
270 #endif | 270 #endif |
271 | 271 |
272 size_t getRetainedWidgets(Vector<RenderWidget*>&); | 272 size_t getRetainedWidgets(Vector<RenderWidget*>&); |
273 void releaseWidgets(Vector<RenderWidget*>&); | 273 void releaseWidgets(Vector<RenderWidget*>&); |
274 | 274 |
275 friend class LayoutStateMaintainer; | 275 friend class LayoutStateMaintainer; |
276 friend class LayoutStateDisabler; | 276 friend class LayoutStateDisabler; |
277 | 277 |
278 virtual void reportMemoryUsage(MemoryObjectInfo*) const OVERRIDE; | |
279 | |
280 protected: | 278 protected: |
281 FrameView* m_frameView; | 279 FrameView* m_frameView; |
282 | 280 |
283 RenderObject* m_selectionStart; | 281 RenderObject* m_selectionStart; |
284 RenderObject* m_selectionEnd; | 282 RenderObject* m_selectionEnd; |
285 int m_selectionStartPos; | 283 int m_selectionStartPos; |
286 int m_selectionEndPos; | 284 int m_selectionEndPos; |
287 | 285 |
288 // FIXME: Only used by embedded WebViews inside AppKit NSViews. Find a way
to remove. | 286 // FIXME: Only used by embedded WebViews inside AppKit NSViews. Find a way
to remove. |
289 struct LegacyPrinting { | 287 struct LegacyPrinting { |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 RenderObject::FlowThreadState m_flowThreadState; | 437 RenderObject::FlowThreadState m_flowThreadState; |
440 bool m_fragmenting; | 438 bool m_fragmenting; |
441 #ifndef NDEBUG | 439 #ifndef NDEBUG |
442 LayoutState* m_layoutState; | 440 LayoutState* m_layoutState; |
443 #endif | 441 #endif |
444 }; | 442 }; |
445 | 443 |
446 } // namespace WebCore | 444 } // namespace WebCore |
447 | 445 |
448 #endif // RenderView_h | 446 #endif // RenderView_h |
OLD | NEW |