| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 virtual void updateHitTestResult(HitTestResult&, const LayoutPoint&) overrid
e; | 92 virtual void updateHitTestResult(HitTestResult&, const LayoutPoint&) overrid
e; |
| 93 | 93 |
| 94 IntRect unscaledDocumentRect() const; | 94 IntRect unscaledDocumentRect() const; |
| 95 LayoutRect backgroundRect(RenderBox* backgroundRenderer) const; | 95 LayoutRect backgroundRect(RenderBox* backgroundRenderer) const; |
| 96 | 96 |
| 97 IntRect documentRect() const; | 97 IntRect documentRect() const; |
| 98 | 98 |
| 99 // Renderer that paints the root background has background-images which all
have background-attachment: fixed. | 99 // Renderer that paints the root background has background-images which all
have background-attachment: fixed. |
| 100 bool rootBackgroundIsEntirelyFixed() const; | 100 bool rootBackgroundIsEntirelyFixed() const; |
| 101 | 101 |
| 102 virtual bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect& localRect)
const override; | |
| 103 | |
| 104 double layoutViewportWidth() const; | 102 double layoutViewportWidth() const; |
| 105 double layoutViewportHeight() const; | 103 double layoutViewportHeight() const; |
| 106 | 104 |
| 107 void pushLayoutState(LayoutState&); | 105 void pushLayoutState(LayoutState&); |
| 108 void popLayoutState(); | 106 void popLayoutState(); |
| 109 | 107 |
| 110 void addIFrame(RenderIFrame* iframe); | 108 void addIFrame(RenderIFrame* iframe); |
| 111 void removeIFrame(RenderIFrame* iframe); | 109 void removeIFrame(RenderIFrame* iframe); |
| 112 void updateIFramesAfterLayout(); | 110 void updateIFramesAfterLayout(); |
| 113 | 111 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 141 unsigned m_hitTestCount; | 139 unsigned m_hitTestCount; |
| 142 | 140 |
| 143 WTF::HashSet<RenderIFrame*> m_iframes; | 141 WTF::HashSet<RenderIFrame*> m_iframes; |
| 144 }; | 142 }; |
| 145 | 143 |
| 146 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderView, isRenderView()); | 144 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderView, isRenderView()); |
| 147 | 145 |
| 148 } // namespace blink | 146 } // namespace blink |
| 149 | 147 |
| 150 #endif // SKY_ENGINE_CORE_RENDERING_RENDERVIEW_H_ | 148 #endif // SKY_ENGINE_CORE_RENDERING_RENDERVIEW_H_ |
| OLD | NEW |