Index: content/common/view_messages.h |
diff --git a/content/common/view_messages.h b/content/common/view_messages.h |
index 1b1c634f9e55428dff9d1b1e579a9a830558fb58..c5c6ca861350aa476f4d1bd5b1a0b02c9d573eb6 100644 |
--- a/content/common/view_messages.h |
+++ b/content/common/view_messages.h |
@@ -1236,11 +1236,6 @@ IPC_MESSAGE_ROUTED1(ViewMsg_SetActive, |
// Sent when the worker has started. |
IPC_MESSAGE_ROUTED0(ViewMsg_WorkerCreated) |
-// The response to ViewHostMsg_AsyncOpenPepperFile. |
-IPC_MESSAGE_ROUTED2(ViewMsg_AsyncOpenPepperFile_ACK, |
- base::PlatformFileError /* error_code */, |
- IPC::PlatformFileForTransit /* file descriptor */) |
- |
// Tells the renderer that the network state has changed and that |
// window.navigator.onLine should be updated for all WebViews. |
IPC_MESSAGE_CONTROL1(ViewMsg_NetworkStateChanged, |
@@ -1944,13 +1939,6 @@ IPC_MESSAGE_CONTROL2(ViewHostMsg_OpenChannelToPpapiBroker, |
int /* routing_id */, |
base::FilePath /* path */) |
-// Opens a Pepper file asynchronously. The response returns a file descriptor |
-// and an error code from base/platform_file.h. |
-IPC_MESSAGE_CONTROL3(ViewHostMsg_AsyncOpenPepperFile, |
- int /* routing_id */, |
- base::FilePath /* file path */, |
- int /* pp_open_flags */) |
- |
// A renderer sends this to the browser process when it wants to access a PPAPI |
// broker. In contrast to ViewHostMsg_OpenChannelToPpapiBroker, this is called |
// for every connection. |