OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 2795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2806 | 2806 |
2807 // Registers a blob URL referring to the blob data identified by the specified | 2807 // Registers a blob URL referring to the blob data identified by the specified |
2808 // source URL. | 2808 // source URL. |
2809 IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrlFrom, | 2809 IPC_MESSAGE_CONTROL2(ViewHostMsg_RegisterBlobUrlFrom, |
2810 GURL /* url */, | 2810 GURL /* url */, |
2811 GURL /* src_url */) | 2811 GURL /* src_url */) |
2812 | 2812 |
2813 // Unregister a blob URL. | 2813 // Unregister a blob URL. |
2814 IPC_MESSAGE_CONTROL1(ViewHostMsg_UnregisterBlobUrl, GURL /* url */) | 2814 IPC_MESSAGE_CONTROL1(ViewHostMsg_UnregisterBlobUrl, GURL /* url */) |
2815 | 2815 |
| 2816 // Suggest results ----------------------------------------------------------- |
| 2817 |
| 2818 IPC_MESSAGE_ROUTED2(ViewHostMsg_SetSuggestResult, |
| 2819 int32 /* page_id */, |
| 2820 std::string /* suggest */) |
| 2821 |
2816 IPC_END_MESSAGES(ViewHost) | 2822 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |