Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: Source/core/rendering/RenderView.h

Issue 926193003: Move rendering/RenderBox to layout/LayoutBox. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderSearchField.cpp ('k') | Source/core/rendering/RenderView.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderSearchField.cpp ('k') | Source/core/rendering/RenderView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698