| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_AcceptAllCookies, | 108 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, |
| 109 bool /* accept */) | 109 bool /* accept */) |
| 110 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) | 110 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) |
| 111 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, | 111 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, |
| 112 float /* factor */) | 112 float /* factor */) |
| 113 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 113 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
| 114 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 114 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
| 115 | 115 |
| 116 IPC_MESSAGE_ROUTED2(ShellViewHostMsg_EchoPing, | |
| 117 int /* id */, | |
| 118 std::string /* body */) | |
| 119 IPC_MESSAGE_ROUTED2(ShellViewMsg_EchoPong, | |
| 120 int /* id */, | |
| 121 std::string /* body */) | |
| 122 | |
| 123 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) | 116 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) |
| 124 IPC_STRUCT_TRAITS_MEMBER(leaked) | 117 IPC_STRUCT_TRAITS_MEMBER(leaked) |
| 125 IPC_STRUCT_TRAITS_MEMBER(detail) | 118 IPC_STRUCT_TRAITS_MEMBER(detail) |
| 126 IPC_STRUCT_TRAITS_END() | 119 IPC_STRUCT_TRAITS_END() |
| 127 | 120 |
| 128 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, | 121 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, |
| 129 content::LeakDetectionResult /* result */) | 122 content::LeakDetectionResult /* result */) |
| OLD | NEW |