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

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

Issue 11624021: Move tracing component to src/components (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add a DEPS rule back Created 7 years, 12 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 // 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"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 int /* base::debug::TraceLog::Notification */) 47 int /* base::debug::TraceLog::Notification */)
48 48
49 // Child processes send trace data back in JSON chunks. 49 // Child processes send trace data back in JSON chunks.
50 IPC_MESSAGE_CONTROL1(TracingHostMsg_TraceDataCollected, 50 IPC_MESSAGE_CONTROL1(TracingHostMsg_TraceDataCollected,
51 std::string /*json trace data*/) 51 std::string /*json trace data*/)
52 52
53 // Reply to TracingMsg_GetTraceBufferPercentFull. 53 // Reply to TracingMsg_GetTraceBufferPercentFull.
54 IPC_MESSAGE_CONTROL1(TracingHostMsg_TraceBufferPercentFullReply, 54 IPC_MESSAGE_CONTROL1(TracingHostMsg_TraceBufferPercentFullReply,
55 float /*trace buffer percent full*/) 55 float /*trace buffer percent full*/)
56 56
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698