| 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 1968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1979 GURL /* origin */, | 1979 GURL /* origin */, |
| 1980 GURL /* icon_url */, | 1980 GURL /* icon_url */, |
| 1981 string16 /* title */, | 1981 string16 /* title */, |
| 1982 string16 /* text */, | 1982 string16 /* text */, |
| 1983 int /* notification_id */) | 1983 int /* notification_id */) |
| 1984 IPC_MESSAGE_ROUTED1(ViewHostMsg_CancelDesktopNotification, | 1984 IPC_MESSAGE_ROUTED1(ViewHostMsg_CancelDesktopNotification, |
| 1985 int /* notification_id */ ) | 1985 int /* notification_id */ ) |
| 1986 IPC_MESSAGE_ROUTED2(ViewHostMsg_RequestNotificationPermission, | 1986 IPC_MESSAGE_ROUTED2(ViewHostMsg_RequestNotificationPermission, |
| 1987 GURL /* origin */, | 1987 GURL /* origin */, |
| 1988 int /* callback_context */) | 1988 int /* callback_context */) |
| 1989 IPC_SYNC_MESSAGE_ROUTED2_1(ViewHostMsg_CheckNotificationPermission, | 1989 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_CheckNotificationPermission, |
| 1990 GURL /* source page */, | 1990 GURL /* source page */, |
| 1991 std::string /* application id */, | |
| 1992 int /* permission_result */) | 1991 int /* permission_result */) |
| 1993 | 1992 |
| 1994 // Sent if the worker object has sent a ViewHostMsg_CreateDedicatedWorker | 1993 // Sent if the worker object has sent a ViewHostMsg_CreateDedicatedWorker |
| 1995 // message and not received a ViewMsg_WorkerCreated reply, but in the | 1994 // message and not received a ViewMsg_WorkerCreated reply, but in the |
| 1996 // mean time it's destroyed. This tells the browser to not create the queued | 1995 // mean time it's destroyed. This tells the browser to not create the queued |
| 1997 // worker. | 1996 // worker. |
| 1998 IPC_MESSAGE_CONTROL1(ViewHostMsg_CancelCreateDedicatedWorker, | 1997 IPC_MESSAGE_CONTROL1(ViewHostMsg_CancelCreateDedicatedWorker, |
| 1999 int /* route_id */) | 1998 int /* route_id */) |
| 2000 | 1999 |
| 2001 // Wraps an IPC message that's destined to the worker on the renderer->browser | 2000 // Wraps an IPC message that's destined to the worker on the renderer->browser |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2283 int /* render_view_id */, | 2282 int /* render_view_id */, |
| 2284 int /* bridge_id */) | 2283 int /* bridge_id */) |
| 2285 | 2284 |
| 2286 // The |render_view_id| and |bridge_id| requests Geolocation service to | 2285 // The |render_view_id| and |bridge_id| requests Geolocation service to |
| 2287 // resume. | 2286 // resume. |
| 2288 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, | 2287 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, |
| 2289 int /* render_view_id */, | 2288 int /* render_view_id */, |
| 2290 int /* bridge_id */) | 2289 int /* bridge_id */) |
| 2291 | 2290 |
| 2292 IPC_END_MESSAGES(ViewHost) | 2291 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |