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

Unified Diff: third_party/WebKit/Source/platform/transforms/ScaleTransformOperation.h

Issue 2846303002: Replace ASSERT with DCHECK in platform/ (Closed)
Patch Set: rebase Created 3 years, 8 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/platform/transforms/ScaleTransformOperation.h
diff --git a/third_party/WebKit/Source/platform/transforms/ScaleTransformOperation.h b/third_party/WebKit/Source/platform/transforms/ScaleTransformOperation.h
index 1358f1fb93fd39a032cc79828ca0c60b4caca792..88db0e4c659956e0b4d1c2c86ff6ded6a512180b 100644
--- a/third_party/WebKit/Source/platform/transforms/ScaleTransformOperation.h
+++ b/third_party/WebKit/Source/platform/transforms/ScaleTransformOperation.h
@@ -79,7 +79,7 @@ class PLATFORM_EXPORT ScaleTransformOperation final
ScaleTransformOperation(double sx, double sy, double sz, OperationType type)
: x_(sx), y_(sy), z_(sz), type_(type) {
- ASSERT(IsMatchingOperationType(type));
+ DCHECK(IsMatchingOperationType(type));
}
double x_;

Powered by Google App Engine
This is Rietveld 408576698