| 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 "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_Add, std::vector<uint64>) | 232 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_Add, std::vector<uint64>) |
| 233 | 233 |
| 234 // History system notification that one or more history items have been | 234 // History system notification that one or more history items have been |
| 235 // deleted, which at this point means that all link coloring state must be | 235 // deleted, which at this point means that all link coloring state must be |
| 236 // re-calculated. | 236 // re-calculated. |
| 237 IPC_MESSAGE_CONTROL0(ViewMsg_VisitedLink_Reset) | 237 IPC_MESSAGE_CONTROL0(ViewMsg_VisitedLink_Reset) |
| 238 | 238 |
| 239 // Notification that the user scripts have been updated. It has one | 239 // Notification that the user scripts have been updated. It has one |
| 240 // SharedMemoryHandle argument consisting of the pickled script data. This | 240 // SharedMemoryHandle argument consisting of the pickled script data. This |
| 241 // handle is valid in the context of the renderer. | 241 // handle is valid in the context of the renderer. |
| 242 IPC_MESSAGE_CONTROL1(ViewMsg_UserScripts_UpdatedScripts, | 242 IPC_MESSAGE_CONTROL2(ViewMsg_UserScripts_UpdatedScripts, |
| 243 base::SharedMemoryHandle) | 243 base::SharedMemoryHandle, |
| 244 bool /* only_inject_incognito */) |
| 244 | 245 |
| 245 // Sent when the user wants to search for a word on the page (find in page). | 246 // Sent when the user wants to search for a word on the page (find in page). |
| 246 IPC_MESSAGE_ROUTED3(ViewMsg_Find, | 247 IPC_MESSAGE_ROUTED3(ViewMsg_Find, |
| 247 int /* request_id */, | 248 int /* request_id */, |
| 248 string16 /* search_text */, | 249 string16 /* search_text */, |
| 249 WebKit::WebFindOptions) | 250 WebKit::WebFindOptions) |
| 250 | 251 |
| 251 // Send from the renderer to the browser to return the script running result. | 252 // Send from the renderer to the browser to return the script running result. |
| 252 IPC_MESSAGE_ROUTED2(ViewMsg_ExecuteCodeFinished, | 253 IPC_MESSAGE_ROUTED2(ViewMsg_ExecuteCodeFinished, |
| 253 int, /* request id */ | 254 int, /* request id */ |
| (...skipping 1850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2104 ViewHostMsg_SpellChecker_PlatformFillSuggestionList, | 2105 ViewHostMsg_SpellChecker_PlatformFillSuggestionList, |
| 2105 string16 /* word */, | 2106 string16 /* word */, |
| 2106 std::vector<string16> /* suggestions */) | 2107 std::vector<string16> /* suggestions */) |
| 2107 | 2108 |
| 2108 // Request for text translation. | 2109 // Request for text translation. |
| 2109 // Used when translating a page from one language to another. | 2110 // Used when translating a page from one language to another. |
| 2110 IPC_MESSAGE_CONTROL1(ViewHostMsg_TranslateText, | 2111 IPC_MESSAGE_CONTROL1(ViewHostMsg_TranslateText, |
| 2111 ViewHostMsg_TranslateTextParam) | 2112 ViewHostMsg_TranslateTextParam) |
| 2112 | 2113 |
| 2113 IPC_END_MESSAGES(ViewHost) | 2114 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |