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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) | 91 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseDevTools) |
92 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, | 92 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_GoToOffset, |
93 int /* offset */) | 93 int /* offset */) |
94 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_Reload) | 94 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_Reload) |
95 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame, | 95 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_LoadURLForFrame, |
96 GURL /* url */, | 96 GURL /* url */, |
97 std::string /* frame_name */) | 97 std::string /* frame_name */) |
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, |
| 102 GURL /* origin */, |
| 103 int /* result */) |
| 104 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_GrantWebNotificationPermission, |
| 105 GURL /* origin */, |
| 106 bool /* permission_granted */) |
| 107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_ClearWebNotificationPermissions) |
101 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, | 108 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, |
102 bool /* accept */) | 109 bool /* accept */) |
103 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) | 110 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) |
104 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, | 111 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, |
105 float /* factor */) | 112 float /* factor */) |
106 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 113 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
107 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 114 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
108 | 115 |
109 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) | 116 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) |
110 IPC_STRUCT_TRAITS_MEMBER(leaked) | 117 IPC_STRUCT_TRAITS_MEMBER(leaked) |
111 IPC_STRUCT_TRAITS_MEMBER(detail) | 118 IPC_STRUCT_TRAITS_MEMBER(detail) |
112 IPC_STRUCT_TRAITS_END() | 119 IPC_STRUCT_TRAITS_END() |
113 | 120 |
114 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, | 121 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, |
115 content::LeakDetectionResult /* result */) | 122 content::LeakDetectionResult /* result */) |
OLD | NEW |