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

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

Issue 2005683002: Typed CSSOM: Rename SimpleLength to CSSSimpleLength (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix SimpleLengthType compile errors Created 4 years, 7 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
Index: third_party/WebKit/Source/core/css/cssom/StyleCalcLength.h
diff --git a/third_party/WebKit/Source/core/css/cssom/StyleCalcLength.h b/third_party/WebKit/Source/core/css/cssom/StyleCalcLength.h
index b0eb93c2865efa45c58f67a57054d0d0080244b8..1bfa6e3c62eb1be855cff9c264211d9744ee5b09 100644
--- a/third_party/WebKit/Source/core/css/cssom/StyleCalcLength.h
+++ b/third_party/WebKit/Source/core/css/cssom/StyleCalcLength.h
@@ -11,7 +11,7 @@
namespace blink {
class CalcDictionary;
-class SimpleLength;
+class CSSSimpleLength;
class CORE_EXPORT StyleCalcLength final : public CSSLengthValue {
DEFINE_WRAPPERTYPEINFO();
@@ -62,7 +62,7 @@ protected:
private:
StyleCalcLength();
StyleCalcLength(const StyleCalcLength& other);
- StyleCalcLength(const SimpleLength& other);
+ StyleCalcLength(const CSSSimpleLength& other);
static int indexForUnit(CSSPrimitiveValue::UnitType);
static CSSPrimitiveValue::UnitType unitFromIndex(int index)

Powered by Google App Engine
This is Rietveld 408576698