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

Side by Side Diff: Source/core/svg/SVGImageElement.cpp

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 years, 8 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/svg/SVGImageElement.h ('k') | Source/core/svg/SVGLengthContext.h » ('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) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Rob Buis <buis@kde.org>
4 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> 4 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org>
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 } 166 }
167 167
168 bool SVGImageElement::selfHasRelativeLengths() const 168 bool SVGImageElement::selfHasRelativeLengths() const
169 { 169 {
170 return m_x->currentValue()->isRelative() 170 return m_x->currentValue()->isRelative()
171 || m_y->currentValue()->isRelative() 171 || m_y->currentValue()->isRelative()
172 || m_width->currentValue()->isRelative() 172 || m_width->currentValue()->isRelative()
173 || m_height->currentValue()->isRelative(); 173 || m_height->currentValue()->isRelative();
174 } 174 }
175 175
176 LayoutObject* SVGImageElement::createLayoutObject(const LayoutStyle&) 176 LayoutObject* SVGImageElement::createLayoutObject(const ComputedStyle&)
177 { 177 {
178 return new LayoutSVGImage(this); 178 return new LayoutSVGImage(this);
179 } 179 }
180 180
181 bool SVGImageElement::haveLoadedRequiredResources() 181 bool SVGImageElement::haveLoadedRequiredResources()
182 { 182 {
183 return !m_needsLoaderURIUpdate && !imageLoader().hasPendingActivity(); 183 return !m_needsLoaderURIUpdate && !imageLoader().hasPendingActivity();
184 } 184 }
185 185
186 void SVGImageElement::attach(const AttachContext& context) 186 void SVGImageElement::attach(const AttachContext& context)
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 return AtomicString(hrefString()); 221 return AtomicString(hrefString());
222 } 222 }
223 223
224 void SVGImageElement::didMoveToNewDocument(Document& oldDocument) 224 void SVGImageElement::didMoveToNewDocument(Document& oldDocument)
225 { 225 {
226 imageLoader().elementDidMoveToNewDocument(); 226 imageLoader().elementDidMoveToNewDocument();
227 SVGGraphicsElement::didMoveToNewDocument(oldDocument); 227 SVGGraphicsElement::didMoveToNewDocument(oldDocument);
228 } 228 }
229 229
230 } // namespace blink 230 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/svg/SVGImageElement.h ('k') | Source/core/svg/SVGLengthContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698