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

Unified Diff: content/common/view_messages.h

Issue 20777009: A few more cleanups to the pepper code. Dispatch IPCs in the sockets implementations directly by ha… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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/common/view_messages.h
===================================================================
--- content/common/view_messages.h (revision 214423)
+++ content/common/view_messages.h (working copy)
@@ -1199,10 +1199,10 @@
IPC_MESSAGE_ROUTED0(ViewMsg_WorkerCreated)
// The response to ViewHostMsg_AsyncOpenFile.
-IPC_MESSAGE_ROUTED3(ViewMsg_AsyncOpenFile_ACK,
- base::PlatformFileError /* error_code */,
- IPC::PlatformFileForTransit /* file descriptor */,
- int /* message_id */)
+IPC_MESSAGE_CONTROL3(ViewMsg_AsyncOpenFile_ACK,
+ base::PlatformFileError /* error_code */,
+ IPC::PlatformFileForTransit /* file descriptor */,
+ int /* message_id */)
// Tells the renderer that the network state has changed and that
// window.navigator.onLine should be updated for all WebViews.
@@ -2074,10 +2074,10 @@
// Opens a file asynchronously. The response returns a file descriptor
// and an error code from base/platform_file.h.
-IPC_MESSAGE_ROUTED3(ViewHostMsg_AsyncOpenFile,
- base::FilePath /* file path */,
- int /* flags */,
- int /* message_id */)
+IPC_MESSAGE_CONTROL3(ViewHostMsg_AsyncOpenFile,
+ base::FilePath /* file path */,
+ int /* flags */,
+ int /* message_id */)
// Reply to a snapshot request containing whether snapshotting succeeded and the
// SkBitmap if it succeeded.

Powered by Google App Engine
This is Rietveld 408576698