| 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 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 class FlowThreadController; | 33 class FlowThreadController; |
| 34 class RenderLayerCompositor; | 34 class RenderLayerCompositor; |
| 35 class RenderQuote; | 35 class RenderQuote; |
| 36 class RenderWidget; | 36 class RenderWidget; |
| 37 | 37 |
| 38 #if USE(3D_GRAPHICS) | 38 #if USE(3D_GRAPHICS) |
| 39 class CustomFilterGlobalContext; | 39 class CustomFilterGlobalContext; |
| 40 #endif | 40 #endif |
| 41 | 41 |
| 42 class RenderView : public RenderBlock { | 42 class RenderView FINAL : public RenderBlock { |
| 43 public: | 43 public: |
| 44 explicit RenderView(Document*); | 44 explicit RenderView(Document*); |
| 45 virtual ~RenderView(); | 45 virtual ~RenderView(); |
| 46 | 46 |
| 47 bool hitTest(const HitTestRequest&, HitTestResult&); | 47 bool hitTest(const HitTestRequest&, HitTestResult&); |
| 48 bool hitTest(const HitTestRequest&, const HitTestLocation&, HitTestResult&); | 48 bool hitTest(const HitTestRequest&, const HitTestLocation&, HitTestResult&); |
| 49 | 49 |
| 50 virtual const char* renderName() const OVERRIDE { return "RenderView"; } | 50 virtual const char* renderName() const OVERRIDE { return "RenderView"; } |
| 51 | 51 |
| 52 virtual bool isRenderView() const OVERRIDE { return true; } | 52 virtual bool isRenderView() const OVERRIDE { return true; } |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 RenderObject::FlowThreadState m_flowThreadState; | 439 RenderObject::FlowThreadState m_flowThreadState; |
| 440 bool m_fragmenting; | 440 bool m_fragmenting; |
| 441 #ifndef NDEBUG | 441 #ifndef NDEBUG |
| 442 LayoutState* m_layoutState; | 442 LayoutState* m_layoutState; |
| 443 #endif | 443 #endif |
| 444 }; | 444 }; |
| 445 | 445 |
| 446 } // namespace WebCore | 446 } // namespace WebCore |
| 447 | 447 |
| 448 #endif // RenderView_h | 448 #endif // RenderView_h |
| OLD | NEW |