OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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 // Message definition file, included multiple times, hence no include guard. |
| 6 |
| 7 #include "base/strings/string16.h" |
| 8 #include "ipc/ipc_message_macros.h" |
| 9 #include "ipc/ipc_param_traits.h" |
| 10 #include "url/gurl.h" |
| 11 |
| 12 #define IPC_MESSAGE_START NavigationControllerMsgStart |
| 13 |
| 14 IPC_MESSAGE_CONTROL3(NavigationControllerHostMsg_RegisterController, |
| 15 int32 /* host_id */, |
| 16 string16 /* scope */, |
| 17 GURL /* script_url */) |
| 18 |
| 19 IPC_MESSAGE_CONTROL1(NavigationControllerMsg_ControllerReady, |
| 20 int32 /* host_id */) |
| 21 |
| 22 IPC_MESSAGE_CONTROL2(NavigationControllerHostMsg_UnregisterController, |
| 23 int32 /* host_id */, |
| 24 string16 /* scope */) |
| 25 |
| 26 IPC_MESSAGE_CONTROL2(NavigationControllerMsg_ControllerUnregistered, |
| 27 int32 /* host_id */, |
| 28 string16 /* scope */) |
OLD | NEW |