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

Unified Diff: chrome/common/render_messages_internal.h

Issue 6474012: Create a path to deliver SocketStream errors to the renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add unit test and test_shell code Created 9 years, 10 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: chrome/common/render_messages_internal.h
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
index dada88c3bd61d644cf347a9a91d446c57a98d202..4fe660097e08fcda4a6c2c1b135e8f3e22e0996d 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -934,6 +934,12 @@ IPC_MESSAGE_CONTROL2(ViewMsg_SocketStream_SentData,
IPC_MESSAGE_CONTROL1(ViewMsg_SocketStream_Closed,
int /* socket_id */)
+// Report socket stream error.
+// |error| is a number defined in net/base/net_error_list.h.
+IPC_MESSAGE_CONTROL2(ViewMsg_SocketStream_Error,
+ int /* socket_id */,
+ int /* error */)
+
// SpellChecker messages.
// Passes some initialization params to the renderer's spellchecker. This can

Powered by Google App Engine
This is Rietveld 408576698