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

Unified Diff: third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h

Issue 2325983002: Replace ASSERT*() with DCHECK*() in modules/websockets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove ALLOW_UNUSED_LOCAL() Created 4 years, 3 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/modules/websockets/WorkerWebSocketChannel.h
diff --git a/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h b/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h
index 4e190446955c8c5a4e074def1936ed0de691787e..a87319afdfe3f02273ef52de3e521733aa33b498 100644
--- a/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h
+++ b/third_party/WebKit/Source/modules/websockets/WorkerWebSocketChannel.h
@@ -71,11 +71,11 @@ public:
void send(PassRefPtr<BlobDataHandle>) override;
void sendTextAsCharVector(std::unique_ptr<Vector<char>>) override
{
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
void sendBinaryAsCharVector(std::unique_ptr<Vector<char>>) override
{
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
void close(int code, const String& reason) override;
void fail(const String& reason, MessageLevel, std::unique_ptr<SourceLocation>) override;

Powered by Google App Engine
This is Rietveld 408576698