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

Unified Diff: content/browser/devtools/devtools_agent_host_impl.h

Issue 2198503002: DevTools: do not CHECK devtools messages received from renderer in the browser, issue bad_message i… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: initial Created 4 years, 5 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: content/browser/devtools/devtools_agent_host_impl.h
diff --git a/content/browser/devtools/devtools_agent_host_impl.h b/content/browser/devtools/devtools_agent_host_impl.h
index fa966c4c658d7d0a6c77e7fffcb359c1f5c7393c..1f76bb50269badadc2dc054ae39583c98b4d7593 100644
--- a/content/browser/devtools/devtools_agent_host_impl.h
+++ b/content/browser/devtools/devtools_agent_host_impl.h
@@ -92,7 +92,7 @@ class DevToolsMessageChunkProcessor {
std::string state_cookie() const { return state_cookie_; }
void set_state_cookie(const std::string& cookie) { state_cookie_ = cookie; }
int last_call_id() const { return last_call_id_; }
- void ProcessChunkedMessageFromAgent(const DevToolsMessageChunk& chunk);
+ bool ProcessChunkedMessageFromAgent(const DevToolsMessageChunk& chunk);
private:
SendMessageCallback callback_;

Powered by Google App Engine
This is Rietveld 408576698