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

Unified Diff: third_party/WebKit/Source/core/css/CSSMatrix.cpp

Issue 2392343005: Reflow comments in core/css (Closed)
Patch Set: Revert clang-format Created 4 years, 2 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/CSSMatrix.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSMatrix.cpp b/third_party/WebKit/Source/core/css/CSSMatrix.cpp
index c240e1998e0bf5b566cdf44c52201cda3a3c5bf2..156510a5f2e8d2facaafde94cb81cb3980e6a8a0 100644
--- a/third_party/WebKit/Source/core/css/CSSMatrix.cpp
+++ b/third_party/WebKit/Source/core/css/CSSMatrix.cpp
@@ -70,7 +70,8 @@ void CSSMatrix::setMatrixValue(const String& string,
if (const CSSValue* value =
CSSParser::parseSingleValue(CSSPropertyTransform, string)) {
- // Check for a "none" transform. In these cases we can use the default identity matrix.
+ // Check for a "none" transform. In these cases we can use the default
+ // identity matrix.
if (value->isIdentifierValue() &&
(toCSSIdentifierValue(value))->getValueID() == CSSValueNone)
return;
@@ -186,7 +187,8 @@ CSSMatrix* CSSMatrix::skewY(double angle) const {
}
String CSSMatrix::toString() const {
- // FIXME - Need to ensure valid CSS floating point values (https://bugs.webkit.org/show_bug.cgi?id=20674)
+ // FIXME - Need to ensure valid CSS floating point values
+ // (https://bugs.webkit.org/show_bug.cgi?id=20674)
if (m_matrix->isAffine())
return String::format("matrix(%f, %f, %f, %f, %f, %f)", m_matrix->a(),
m_matrix->b(), m_matrix->c(), m_matrix->d(),
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSMatrix.h ('k') | third_party/WebKit/Source/core/css/CSSPrimitiveValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698