| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 } | 132 } |
| 133 bool pageLogicalHeightChanged() const { return m_pageLogicalHeightChanged; } | 133 bool pageLogicalHeightChanged() const { return m_pageLogicalHeightChanged; } |
| 134 | 134 |
| 135 // Notification that this view moved into or out of a native window. | 135 // Notification that this view moved into or out of a native window. |
| 136 void setIsInWindow(bool); | 136 void setIsInWindow(bool); |
| 137 | 137 |
| 138 LayerCompositor* compositor(); | 138 LayerCompositor* compositor(); |
| 139 bool usesCompositing() const; | 139 bool usesCompositing() const; |
| 140 | 140 |
| 141 IntRect unscaledDocumentRect() const; | 141 IntRect unscaledDocumentRect() const; |
| 142 LayoutRect backgroundRect(RenderBox* backgroundRenderer) const; | 142 LayoutRect backgroundRect(LayoutBox* backgroundRenderer) const; |
| 143 | 143 |
| 144 IntRect documentRect() const; | 144 IntRect documentRect() const; |
| 145 | 145 |
| 146 // Renderer that paints the root background has background-images which all
have background-attachment: fixed. | 146 // Renderer that paints the root background has background-images which all
have background-attachment: fixed. |
| 147 bool rootBackgroundIsEntirelyFixed() const; | 147 bool rootBackgroundIsEntirelyFixed() const; |
| 148 | 148 |
| 149 IntervalArena* intervalArena(); | 149 IntervalArena* intervalArena(); |
| 150 | 150 |
| 151 void setLayoutQuoteHead(LayoutQuote* head) { m_layoutQuoteHead = head; } | 151 void setLayoutQuoteHead(LayoutQuote* head) { m_layoutQuoteHead = head; } |
| 152 LayoutQuote* layoutQuoteHead() const { return m_layoutQuoteHead; } | 152 LayoutQuote* layoutQuoteHead() const { return m_layoutQuoteHead; } |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 m_paintInvalidationState->m_cachedOffsetsEnabled = true; | 253 m_paintInvalidationState->m_cachedOffsetsEnabled = true; |
| 254 } | 254 } |
| 255 private: | 255 private: |
| 256 const PaintInvalidationState* m_paintInvalidationState; | 256 const PaintInvalidationState* m_paintInvalidationState; |
| 257 bool m_didDisable; | 257 bool m_didDisable; |
| 258 }; | 258 }; |
| 259 | 259 |
| 260 } // namespace blink | 260 } // namespace blink |
| 261 | 261 |
| 262 #endif // RenderView_h | 262 #endif // RenderView_h |
| OLD | NEW |