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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSUnsupportedStyleValue.h

Issue 2903413002: Restructure type tracking in StyleValues to work better with new numeric types (Closed)
Patch Set: rebase Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSUnitValue.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/cssom/CSSUnsupportedStyleValue.h
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSUnsupportedStyleValue.h b/third_party/WebKit/Source/core/css/cssom/CSSUnsupportedStyleValue.h
index 2c94926c6f15f5d14b83ebef27995c1fb7f94a1b..2833f6af85c291c2c190824ba701fbe7e379d945 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSUnsupportedStyleValue.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSUnsupportedStyleValue.h
@@ -20,7 +20,9 @@ class CORE_EXPORT CSSUnsupportedStyleValue final : public CSSStyleValue {
return new CSSUnsupportedStyleValue(css_text);
}
- StyleValueType GetType() const override { return StyleValueType::kUnknown; }
+ StyleValueType GetType() const override {
+ return StyleValueType::kUnknownType;
+ }
const CSSValue* ToCSSValue() const override;
const CSSValue* ToCSSValueWithProperty(CSSPropertyID) const override;
String toString() const override { return css_text_; }
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSUnitValue.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698