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_ROUTED1(ShellViewHostMsg_AcceptAllCookies, | 98 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_AcceptAllCookies, |
99 bool /* accept */) | 99 bool /* accept */) |
100 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) | 100 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_DeleteAllCookies) |
101 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, | 101 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_SetDeviceScaleFactor, |
102 float /* factor */) | 102 float /* factor */) |
103 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) | 103 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CaptureSessionHistory) |
104 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) | 104 IPC_MESSAGE_ROUTED0(ShellViewHostMsg_CloseRemainingWindows) |
105 | 105 |
106 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) | 106 IPC_STRUCT_TRAITS_BEGIN(content::LeakDetectionResult) |
107 IPC_STRUCT_TRAITS_MEMBER(leaked) | 107 IPC_STRUCT_TRAITS_MEMBER(leaked) |
108 IPC_STRUCT_TRAITS_MEMBER(number_of_live_documents) | 108 IPC_STRUCT_TRAITS_MEMBER(detail) |
109 IPC_STRUCT_TRAITS_MEMBER(number_of_live_nodes) | |
110 IPC_STRUCT_TRAITS_END() | 109 IPC_STRUCT_TRAITS_END() |
111 | 110 |
112 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, | 111 IPC_MESSAGE_ROUTED1(ShellViewHostMsg_LeakDetectionDone, |
113 content::LeakDetectionResult /* result */) | 112 content::LeakDetectionResult /* result */) |
OLD | NEW |