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

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

Issue 2096893002: [Typed OM] Rename is2DComponent to is2D in TransformComponents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync to head Created 4 years, 6 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/CSSTransformComponent.idl ('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/CSSTransformValue.cpp
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp b/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp
index 888760e30c4dac90680ddc880863132f571b4807..d85c27983f152f7c5a895dd89daf375caa9f757b 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp
+++ b/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp
@@ -63,7 +63,7 @@ ValueIterable<CSSTransformComponent*>::IterationSource* CSSTransformValue::start
bool CSSTransformValue::is2D() const
{
for (size_t i = 0; i < m_transformComponents.size(); i++) {
- if (!m_transformComponents[i]->is2DComponent()) {
+ if (!m_transformComponents[i]->is2D()) {
return false;
}
}
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSTransformComponent.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698