OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Multiply-included message file, no traditional include guard. |
| 6 #include <string> |
| 7 |
| 8 #include "ipc/ipc_channel_handle.h" |
| 9 #include "ipc/ipc_message_macros.h" |
| 10 |
| 11 #define IPC_MESSAGE_START ViewerMsgStart |
| 12 |
| 13 //----------------------------------------------------------------------------- |
| 14 // Viewer process messages: |
| 15 // These are messages from the browser to the viewer process. |
| 16 |
| 17 // Shares the rendering handle to the viewer process. |
| 18 IPC_MESSAGE_CONTROL1(ViewerMsg_PbufferHandle, |
| 19 std::string /* TODO(scottmg): whatever type */) |
| 20 |
| 21 //----------------------------------------------------------------------------- |
| 22 // Viewer process host messages: |
| 23 // These are messages from the viewer process to the browser. |
| 24 |
| 25 // Connect to the browser (request a pbuffer handle). |
| 26 IPC_MESSAGE_CONTROL0(ViewerHostMsg_Connect) |
OLD | NEW |