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

Side by Side Diff: Source/WebCore/rendering/svg/RenderSVGBlock.cpp

Issue 10540037: Merge 118608 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
Patch Set: Created 8 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 setNeedsBoundariesUpdate(); 97 setNeedsBoundariesUpdate();
98 RenderBlock::styleWillChange(diff, newStyle); 98 RenderBlock::styleWillChange(diff, newStyle);
99 } 99 }
100 100
101 void RenderSVGBlock::styleDidChange(StyleDifference diff, const RenderStyle* old Style) 101 void RenderSVGBlock::styleDidChange(StyleDifference diff, const RenderStyle* old Style)
102 { 102 {
103 RenderBlock::styleDidChange(diff, oldStyle); 103 RenderBlock::styleDidChange(diff, oldStyle);
104 SVGResourcesCache::clientStyleChanged(this, diff, style()); 104 SVGResourcesCache::clientStyleChanged(this, diff, style());
105 } 105 }
106 106
107 void RenderSVGBlock::updateFromElement()
108 {
109 RenderBlock::updateFromElement();
110 SVGResourcesCache::clientUpdatedFromElement(this, style());
111 }
112
113 } 107 }
114 108
115 #endif 109 #endif
OLDNEW
« no previous file with comments | « Source/WebCore/rendering/svg/RenderSVGBlock.h ('k') | Source/WebCore/rendering/svg/RenderSVGContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698