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

Unified Diff: Source/core/svg/SVGElement.h

Issue 1033943002: Rename LayoutStyle to papayawhip (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: ensureComputedStyle Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGDescElement.h ('k') | Source/core/svg/SVGElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGElement.h
diff --git a/Source/core/svg/SVGElement.h b/Source/core/svg/SVGElement.h
index 92951df696963a191864dfc86d2cb94bd02f2a03..275404de63c9a65204392d1bb4696e5c8085ff50 100644
--- a/Source/core/svg/SVGElement.h
+++ b/Source/core/svg/SVGElement.h
@@ -130,7 +130,7 @@ public:
void synchronizeAnimatedSVGAttribute(const QualifiedName&) const;
- virtual PassRefPtr<LayoutStyle> customStyleForLayoutObject() override final;
+ virtual PassRefPtr<ComputedStyle> customStyleForLayoutObject() override final;
virtual void synchronizeRequiredFeatures() { }
virtual void synchronizeRequiredExtensions() { }
@@ -231,8 +231,8 @@ private:
bool isSVGElement() const = delete; // This will catch anyone doing an unnecessary check.
bool isStyledElement() const = delete; // This will catch anyone doing an unnecessary check.
- const LayoutStyle* computedStyle(PseudoId = NOPSEUDO);
- virtual const LayoutStyle* virtualComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) override final { return computedStyle(pseudoElementSpecifier); }
+ const ComputedStyle* ensureComputedStyle(PseudoId = NOPSEUDO);
+ virtual const ComputedStyle* virtualEnsureComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) override final { return ensureComputedStyle(pseudoElementSpecifier); }
virtual void willRecalcStyle(StyleRecalcChange) override;
void buildPendingResourcesIfNeeded();
« no previous file with comments | « Source/core/svg/SVGDescElement.h ('k') | Source/core/svg/SVGElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698