1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef SERVICES_TRACING_TRACE_DATA_SINK_H_
6 #define SERVICES_TRACING_TRACE_DATA_SINK_H_
10 #include "base/basictypes.h"
11 #include "mojo/public/cpp/system/data_pipe.h"
17 explicit TraceDataSink(mojo::ScopedDataPipeProducerHandle pipe
);
20 void AddChunk(const std::string
& json
);
24 mojo::ScopedDataPipeProducerHandle pipe_
;
27 DISALLOW_COPY_AND_ASSIGN(TraceDataSink
);
30 } // namespace tracing
32 #endif // SERVICES_TRACING_TRACE_DATA_SINK_H_