| 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 message header, no traditional include guard. | 5 // Multiply-included message header, no traditional include guard. |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 112 |
| 113 // Reply to TracingMsg_ProcessMemoryDumpRequest. | 113 // Reply to TracingMsg_ProcessMemoryDumpRequest. |
| 114 IPC_MESSAGE_CONTROL2(TracingHostMsg_ProcessMemoryDumpResponse, | 114 IPC_MESSAGE_CONTROL2(TracingHostMsg_ProcessMemoryDumpResponse, |
| 115 uint64_t /* dump_guid */, | 115 uint64_t /* dump_guid */, |
| 116 bool /* success */) | 116 bool /* success */) |
| 117 | 117 |
| 118 IPC_MESSAGE_CONTROL1(TracingHostMsg_TriggerBackgroundTrace, | 118 IPC_MESSAGE_CONTROL1(TracingHostMsg_TriggerBackgroundTrace, |
| 119 std::string /* name */) | 119 std::string /* name */) |
| 120 | 120 |
| 121 IPC_MESSAGE_CONTROL0(TracingHostMsg_AbortBackgroundTrace) | 121 IPC_MESSAGE_CONTROL0(TracingHostMsg_AbortBackgroundTrace) |
| OLD | NEW |