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

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

Issue 12150004: Category group support/Renamings. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Added destructor for CategoryFilter class per CQ failure. Created 7 years, 8 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 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/sync_socket.h" 10 #include "base/sync_socket.h"
11 #include "ipc/ipc_channel_handle.h" 11 #include "ipc/ipc_channel_handle.h"
12 #include "ipc/ipc_message_macros.h" 12 #include "ipc/ipc_message_macros.h"
13 #include "ipc/ipc_message_utils.h" 13 #include "ipc/ipc_message_utils.h"
14 #include "ipc/ipc_platform_file.h" 14 #include "ipc/ipc_platform_file.h"
15 15
16 #define IPC_MESSAGE_START TracingMsgStart 16 #define IPC_MESSAGE_START TracingMsgStart
17 17
18 // Sent to all child processes to enable trace event recording. 18 // Sent to all child processes to enable trace event recording.
19 IPC_MESSAGE_CONTROL4(TracingMsg_BeginTracing, 19 IPC_MESSAGE_CONTROL3(TracingMsg_BeginTracing,
20 std::vector<std::string> /* included_categories */, 20 std::string /* category_filter_str */,
21 std::vector<std::string> /* excluded_categories */,
22 base::TimeTicks /* browser_time */, 21 base::TimeTicks /* browser_time */,
23 int /* base::debug::TraceLog::Options */) 22 int /* base::debug::TraceLog::Options */)
24 23
25 // Sent to all child processes to disable trace event recording. 24 // Sent to all child processes to disable trace event recording.
26 IPC_MESSAGE_CONTROL0(TracingMsg_EndTracing) 25 IPC_MESSAGE_CONTROL0(TracingMsg_EndTracing)
27 26
28 // Sent to all child processes to get trace buffer fullness. 27 // Sent to all child processes to get trace buffer fullness.
29 IPC_MESSAGE_CONTROL0(TracingMsg_GetTraceBufferPercentFull) 28 IPC_MESSAGE_CONTROL0(TracingMsg_GetTraceBufferPercentFull)
30 29
31 // Sent to all child processes to set watch event. 30 // Sent to all child processes to set watch event.
(...skipping 16 matching lines...) Expand all
48 int /* base::debug::TraceLog::Notification */) 47 int /* base::debug::TraceLog::Notification */)
49 48
50 // Child processes send trace data back in JSON chunks. 49 // Child processes send trace data back in JSON chunks.
51 IPC_MESSAGE_CONTROL1(TracingHostMsg_TraceDataCollected, 50 IPC_MESSAGE_CONTROL1(TracingHostMsg_TraceDataCollected,
52 std::string /*json trace data*/) 51 std::string /*json trace data*/)
53 52
54 // Reply to TracingMsg_GetTraceBufferPercentFull. 53 // Reply to TracingMsg_GetTraceBufferPercentFull.
55 IPC_MESSAGE_CONTROL1(TracingHostMsg_TraceBufferPercentFullReply, 54 IPC_MESSAGE_CONTROL1(TracingHostMsg_TraceBufferPercentFullReply,
56 float /*trace buffer percent full*/) 55 float /*trace buffer percent full*/)
57 56
OLDNEW
« no previous file with comments | « components/tracing/child_trace_message_filter.cc ('k') | content/app/android/library_loader_hooks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698