OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <string> | 6 #include <string> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "content/public/common/common_param_traits.h" | 9 #include "content/public/common/common_param_traits.h" |
10 #include "content/public/common/page_state.h" | 10 #include "content/public/common/page_state.h" |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases) | 98 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearAllDatabases) |
99 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota, | 99 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDatabaseQuota, |
100 int /* quota */) | 100 int /* quota */) |
101 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_CheckWebNotificationPermission, | 101 IPC_SYNC_MESSAGE_ROUTED1_1(ShellViewHostMsg_CheckWebNotificationPermission, |
102 GURL /* origin */, | 102 GURL /* origin */, |
103 int /* result */) | 103 int /* result */) |
104 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_GrantWebNotificationPermission, | 104 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_GrantWebNotificationPermission, |
105 GURL /* origin */, | 105 GURL /* origin */, |
106 bool /* permission_granted */) | 106 bool /* permission_granted */) |
107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearWebNotificationPermissions) | 107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearWebNotificationPermissions) |
| 108 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SimulateWebNotificationClick, |
| 109 std::string /* title */) |
108 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, | 110 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, |
109 bool /* accept */) | 111 bool /* accept */) |
110 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) | 112 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) |
111 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, | 113 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, |
112 float /* factor */) | 114 float /* factor */) |
113 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 115 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
114 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 116 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
115 | 117 |
116 IPC_MESSAGE_CONTROL3(ShellViewHostMsg_EchoPing, | 118 IPC_MESSAGE_CONTROL3(ShellViewHostMsg_EchoPing, |
117 int /* routing_id */, | 119 int /* routing_id */, |
118 int /* id */, | 120 int /* id */, |
119 std::string /* body */) | 121 std::string /* body */) |
120 IPC_MESSAGE_ROUTED2(ShellViewMsg_EchoPong, | 122 IPC_MESSAGE_ROUTED2(ShellViewMsg_EchoPong, |
121 int /* id */, | 123 int /* id */, |
122 std::string /* body */) | 124 std::string /* body */) |
123 | 125 |
124 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) | 126 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) |
125 IPC_STRUCT_TRAITS_MEMBER(leaked) | 127 IPC_STRUCT_TRAITS_MEMBER(leaked) |
126 IPC_STRUCT_TRAITS_MEMBER(detail) | 128 IPC_STRUCT_TRAITS_MEMBER(detail) |
127 IPC_STRUCT_TRAITS_END() | 129 IPC_STRUCT_TRAITS_END() |
128 | 130 |
129 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, | 131 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, |
130 content::LeakDetectionResult /* result */) | 132 content::LeakDetectionResult /* result */) |
OLD | NEW |