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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.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/paint/PaintControllerTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.cpp b/third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.cpp
index a5c53a9cbd6060ade4ca58f9ce8e4a12426d1bc0..e3f7d5748d34e1598686f974d9eb3c9bcf3139c6 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/PaintControllerTest.cpp
@@ -66,10 +66,10 @@ class TestDisplayItem final : public DisplayItem {
TestDisplayItem(const FakeDisplayItemClient& client, Type type)
: DisplayItem(client, type, sizeof(*this)) {}
- void Replay(GraphicsContext&) const final { ASSERT_NOT_REACHED(); }
+ void Replay(GraphicsContext&) const final { NOTREACHED(); }
void AppendToWebDisplayItemList(const IntRect&,
WebDisplayItemList*) const final {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
};

Powered by Google App Engine
This is Rietveld 408576698