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 // Common IPC messages used for child processes. | 5 // Common IPC messages used for child processes. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
125 // fill in and pass back to the browser. | 125 // fill in and pass back to the browser. |
126 IPC_SYNC_MESSAGE_CONTROL1_1(ChildProcessHostMsg_SyncAllocateSharedMemory, | 126 IPC_SYNC_MESSAGE_CONTROL1_1(ChildProcessHostMsg_SyncAllocateSharedMemory, |
127 uint32 /* buffer size */, | 127 uint32 /* buffer size */, |
128 base::SharedMemoryHandle) | 128 base::SharedMemoryHandle) |
129 | 129 |
130 #if defined(USE_TCMALLOC) | 130 #if defined(USE_TCMALLOC) |
131 // Reply to ChildProcessMsg_GetTcmallocStats. | 131 // Reply to ChildProcessMsg_GetTcmallocStats. |
132 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats, | 132 IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats, |
133 std::string /* output */) | 133 std::string /* output */) |
134 #endif | 134 #endif |
135 | |
136 IPC_SYNC_MESSAGE_CONTROL1_1(ChildProcessHostMsg_GetBrowserHistogram, | |
jochen (gone - plz use gerrit)
2013/01/18 14:03:11
move closer to the other histograms IPCs
marja
2013/01/18 15:00:08
Done.
| |
137 std::string, /* histogram_name */ | |
138 std::string /* histogram_json */) | |
OLD | NEW |