Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: content/common/child_process_messages.h

Issue 11975048: Native memory histograms for the browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698