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

Unified Diff: third_party/WebKit/Source/platform/graphics/ImageOrientation.cpp

Issue 2807923002: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in platform/graphics (Closed)
Patch Set: fix typo 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/graphics/ImageOrientation.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/ImageOrientation.cpp b/third_party/WebKit/Source/platform/graphics/ImageOrientation.cpp
index e1aba9f63c64b8de9be217234d126bcf9311cafb..f97c3993a9b30ea5a1a968484f07f7e6d89af977 100644
--- a/third_party/WebKit/Source/platform/graphics/ImageOrientation.cpp
+++ b/third_party/WebKit/Source/platform/graphics/ImageOrientation.cpp
@@ -53,10 +53,10 @@ AffineTransform ImageOrientation::TransformFromDefault(
case kOriginLeftBottom:
return AffineTransform(0, -1, 1, 0, 0, h);
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return AffineTransform();
}

Powered by Google App Engine
This is Rietveld 408576698