| 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 // IPC messages for desktop notification. | 5 // IPC messages for desktop notification. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "ipc/ipc_message_macros.h" | 8 #include "ipc/ipc_message_macros.h" |
| 9 #include "googleurl/src/gurl.h" | 9 #include "googleurl/src/gurl.h" |
| 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 DesktopNotificationHostMsg_Show_Params) | 69 DesktopNotificationHostMsg_Show_Params) |
| 70 | 70 |
| 71 IPC_MESSAGE_ROUTED1(DesktopNotificationHostMsg_Cancel, | 71 IPC_MESSAGE_ROUTED1(DesktopNotificationHostMsg_Cancel, |
| 72 int /* notification_id */) | 72 int /* notification_id */) |
| 73 | 73 |
| 74 IPC_MESSAGE_ROUTED2(DesktopNotificationHostMsg_RequestPermission, | 74 IPC_MESSAGE_ROUTED2(DesktopNotificationHostMsg_RequestPermission, |
| 75 GURL /* origin */, | 75 GURL /* origin */, |
| 76 int /* callback_context */) | 76 int /* callback_context */) |
| 77 | 77 |
| 78 IPC_SYNC_MESSAGE_ROUTED1_1(DesktopNotificationHostMsg_CheckPermission, | 78 IPC_SYNC_MESSAGE_ROUTED1_1(DesktopNotificationHostMsg_CheckPermission, |
| 79 GURL /* source page */, | 79 GURL /* origin */, |
| 80 int /* permission_result */) | 80 int /* permission_result */) |
| OLD | NEW |