Index: third_party/WebKit/Source/core/css/CSSValuePair.h |
diff --git a/third_party/WebKit/Source/core/css/CSSValuePair.h b/third_party/WebKit/Source/core/css/CSSValuePair.h |
index 4069f090f5fb33b253e242e4cb5683cf18f15ebd..f965978a64737f4da2fedc73400422c29b54a813 100644 |
--- a/third_party/WebKit/Source/core/css/CSSValuePair.h |
+++ b/third_party/WebKit/Source/core/css/CSSValuePair.h |
@@ -22,11 +22,8 @@ |
#define CSSValuePair_h |
#include "core/CoreExport.h" |
-#include "core/css/CSSPrimitiveValue.h" |
#include "core/css/CSSValue.h" |
-#include "core/style/ComputedStyle.h" |
-#include "platform/Length.h" |
-#include "wtf/text/StringBuilder.h" |
+#include "wtf/text/WTFString.h" |
namespace blink { |
@@ -40,11 +37,6 @@ public: |
return new CSSValuePair(first, second, identicalValuesPolicy); |
} |
- static CSSValuePair* create(const LengthSize& lengthSize, const ComputedStyle& style) |
- { |
- return new CSSValuePair(CSSPrimitiveValue::create(lengthSize.width(), style.effectiveZoom()), CSSPrimitiveValue::create(lengthSize.height(), style.effectiveZoom()), KeepIdenticalValues); |
- } |
- |
const CSSValue& first() const { return *m_first; } |
const CSSValue& second() const { return *m_second; } |