OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
6 #include <map> | 6 #include <map> |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 | 164 |
165 // History system notification that a link has been added and the link | 165 // History system notification that a link has been added and the link |
166 // coloring state for the given hash must be re-calculated. | 166 // coloring state for the given hash must be re-calculated. |
167 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_Add, std::vector<uint64>) | 167 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_Add, std::vector<uint64>) |
168 | 168 |
169 // History system notification that one or more history items have been | 169 // History system notification that one or more history items have been |
170 // deleted, which at this point means that all link coloring state must be | 170 // deleted, which at this point means that all link coloring state must be |
171 // re-calculated. | 171 // re-calculated. |
172 IPC_MESSAGE_CONTROL0(ViewMsg_VisitedLink_Reset) | 172 IPC_MESSAGE_CONTROL0(ViewMsg_VisitedLink_Reset) |
173 | 173 |
174 // Notification that the user scripts have been updated. It has one | |
175 // SharedMemoryHandle argument consisting of the pickled script data. This | |
176 // handle is valid in the context of the renderer. | |
177 IPC_MESSAGE_CONTROL1(ViewMsg_UserScripts_UpdatedScripts, | |
178 base::SharedMemoryHandle) | |
179 | |
180 // Sent when user prompting is required before a ViewHostMsg_GetCookies | 174 // Sent when user prompting is required before a ViewHostMsg_GetCookies |
181 // message can complete. This message indicates that the renderer should | 175 // message can complete. This message indicates that the renderer should |
182 // pump messages while waiting for cookies. | 176 // pump messages while waiting for cookies. |
183 IPC_MESSAGE_CONTROL0(ViewMsg_SignalCookiePromptEvent) | 177 IPC_MESSAGE_CONTROL0(ViewMsg_SignalCookiePromptEvent) |
184 | 178 |
185 // Set the content settings for a particular url that the renderer is in the | 179 // Set the content settings for a particular url that the renderer is in the |
186 // process of loading. This will be stored, to be used if the load commits | 180 // process of loading. This will be stored, to be used if the load commits |
187 // and ignored otherwise. | 181 // and ignored otherwise. |
188 IPC_MESSAGE_ROUTED2(ViewMsg_SetContentSettingsForLoadingURL, | 182 IPC_MESSAGE_ROUTED2(ViewMsg_SetContentSettingsForLoadingURL, |
189 GURL /* url */, | 183 GURL /* url */, |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 // while performing stress testing. | 485 // while performing stress testing. |
492 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, | 486 IPC_MESSAGE_ROUTED2(ViewMsg_JavaScriptStressTestControl, |
493 int /* cmd */, | 487 int /* cmd */, |
494 int /* param */) | 488 int /* param */) |
495 | 489 |
496 // Register a new handler for URL requests with the given scheme. | 490 // Register a new handler for URL requests with the given scheme. |
497 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler, | 491 IPC_MESSAGE_ROUTED3(ViewHostMsg_RegisterProtocolHandler, |
498 std::string /* scheme */, | 492 std::string /* scheme */, |
499 GURL /* url */, | 493 GURL /* url */, |
500 string16 /* title */) | 494 string16 /* title */) |
OLD | NEW |