| Index: third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp b/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp
|
| index d7c2617e7e77aff6c7dbe007790b67dc7ff1b8d9..a7df5b68f89c0bec55387b9d80eacb7ab5622db2 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp
|
| @@ -10,10 +10,10 @@
|
|
|
| namespace blink {
|
|
|
| -TranslationTransformComponent* TranslationTransformComponent::create(LengthValue* x, LengthValue* y, LengthValue* z, ExceptionState& exceptionState)
|
| +TranslationTransformComponent* TranslationTransformComponent::create(CSSLengthValue* x, CSSLengthValue* y, CSSLengthValue* z, ExceptionState& exceptionState)
|
| {
|
| if (z->containsPercent()) {
|
| - exceptionState.throwTypeError("TranslationTransformComponent does not support z LengthValue with percent units");
|
| + exceptionState.throwTypeError("TranslationTransformComponent does not support z CSSLengthValue with percent units");
|
| return nullptr;
|
| }
|
| return new TranslationTransformComponent(x, y, z);
|
|
|