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

Side by Side Diff: components/tracing/common/tracing_messages.h

Issue 2028043002: tracing: restructure to the components/tracing folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
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 // 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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698