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

Unified Diff: third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.cpp

Issue 1949343002: [Obsolete] Typed CSSOM: Prefix LengthValue, CalcLength and SimpleLength with "CSS" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename layout test files 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
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h ('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/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);
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/TranslationTransformComponent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698