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

Unified Diff: third_party/WebKit/Source/core/css/cssom/SimpleLength.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/SimpleLength.h
diff --git a/third_party/WebKit/Source/core/css/cssom/SimpleLength.h b/third_party/WebKit/Source/core/css/cssom/SimpleLength.h
deleted file mode 100644
index 645822c8dd3f943040dff26bb85aa6b1f43ddf17..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/css/cssom/SimpleLength.h
+++ /dev/null
@@ -1,69 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef SimpleLength_h
-#define SimpleLength_h
-
-#include "bindings/core/v8/ExceptionState.h"
-#include "core/css/cssom/CSSLengthValue.h"
-
-namespace blink {
-
-class CSSPrimitiveValue;
-
-class CORE_EXPORT SimpleLength final : public CSSLengthValue {
- WTF_MAKE_NONCOPYABLE(SimpleLength);
- DEFINE_WRAPPERTYPEINFO();
-public:
- static SimpleLength* create(double value, const String& type, ExceptionState& exceptionState)
- {
- CSSPrimitiveValue::UnitType unit = unitFromName(type);
- if (!isSupportedLengthUnit(unit)) {
- exceptionState.throwTypeError("Invalid unit for SimpleLength: " + type);
- return nullptr;
- }
- return new SimpleLength(value, unit);
- }
-
- static SimpleLength* create(double value, CSSPrimitiveValue::UnitType type)
- {
- return new SimpleLength(value, type);
- }
-
- bool containsPercent() const override;
-
- double value() const { return m_value; }
- String unit() const { return String(CSSPrimitiveValue::unitTypeToString(m_unit)); }
- CSSPrimitiveValue::UnitType lengthUnit() const { return m_unit; }
-
- void setValue(double value) { m_value = value; }
-
- StyleValueType type() const override { return StyleValueType::SimpleLengthType; }
-
- CSSValue* toCSSValue() const override;
-
-protected:
- virtual CSSLengthValue* addInternal(const CSSLengthValue* other, ExceptionState&);
- virtual CSSLengthValue* subtractInternal(const CSSLengthValue* other, ExceptionState&);
- virtual CSSLengthValue* multiplyInternal(double, ExceptionState&);
- virtual CSSLengthValue* divideInternal(double, ExceptionState&);
-
-private:
- SimpleLength(double value, CSSPrimitiveValue::UnitType unit) : CSSLengthValue(), m_unit(unit), m_value(value) {}
-
- CSSPrimitiveValue::UnitType m_unit;
- double m_value;
-};
-
-#define DEFINE_SIMPLE_LENGTH_TYPE_CASTS(argumentType) \
- DEFINE_TYPE_CASTS(SimpleLength, argumentType, value, \
- value->type() == CSSLengthValue::StyleValueType::SimpleLengthType, \
- value.type() == CSSLengthValue::StyleValueType::SimpleLengthType)
-
-DEFINE_SIMPLE_LENGTH_TYPE_CASTS(CSSLengthValue);
-DEFINE_SIMPLE_LENGTH_TYPE_CASTS(StyleValue);
-
-} // namespace blink
-
-#endif

Powered by Google App Engine
This is Rietveld 408576698