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

Unified Diff: third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp

Issue 2896443003: Replace remaining ASSERT with DCHECK/_EQ as appropriate (Closed)
Patch Set: Created 3 years, 7 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/web/WebDevToolsAgentImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
index 9f401035d6fa12ce5fd74fd46b0a31d2eec02ea6..ee7cdb2a3c72c7889f717937a80f91001464e7eb 100644
--- a/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
+++ b/third_party/WebKit/Source/web/WebDevToolsAgentImpl.cpp
@@ -558,7 +558,7 @@ void WebDevToolsAgentImpl::SendProtocolMessage(int session_id,
int call_id,
const String& response,
const String& state) {
- ASSERT(Attached());
+ DCHECK(Attached());
if (client_)
client_->SendProtocolMessage(session_id, call_id, response, state);
}

Powered by Google App Engine
This is Rietveld 408576698