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

Side by Side Diff: mojo/services/tracing/trace_data_sink.cc

Issue 1049993002: Get mojo_shell building inside chromium checkout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 5 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
« no previous file with comments | « mojo/services/tracing/trace_data_sink.h ('k') | mojo/services/tracing/tracing.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #include "mojo/services/tracing/trace_data_sink.h"
6
7 #include "base/logging.h"
8 #include "mojo/common/data_pipe_utils.h"
9
10 using mojo::common::BlockingCopyFromString;
11
12 namespace tracing {
13 namespace {
14
15 const char kStart[] = "{\"traceEvents\":[";
16 const char kEnd[] = "]}";
17
18 } // namespace
19
20 TraceDataSink::TraceDataSink(mojo::ScopedDataPipeProducerHandle pipe)
21 : pipe_(pipe.Pass()), empty_(true) {
22 BlockingCopyFromString(kStart, pipe_);
23 }
24
25 TraceDataSink::~TraceDataSink() {
26 if (pipe_.is_valid())
27 Flush();
28 DCHECK(!pipe_.is_valid());
29 }
30
31 void TraceDataSink::AddChunk(const std::string& json) {
32 if (!empty_)
33 BlockingCopyFromString(",", pipe_);
34 empty_ = false;
35 BlockingCopyFromString(json, pipe_);
36 }
37
38 void TraceDataSink::Flush() {
39 BlockingCopyFromString(kEnd, pipe_);
40 pipe_.reset();
41 }
42
43 } // namespace tracing
OLDNEW
« no previous file with comments | « mojo/services/tracing/trace_data_sink.h ('k') | mojo/services/tracing/tracing.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698