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

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

Issue 1878893002: Move //mojo/services tracing & catalog to //services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@63move
Patch Set: . Created 4 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_recorder_impl.h ('k') | mojo/services/tracing/tracing_app.h » ('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 2015 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_recorder_impl.h"
6
7 #include <utility>
8
9 namespace tracing {
10
11 TraceRecorderImpl::TraceRecorderImpl(
12 mojo::InterfaceRequest<TraceRecorder> request,
13 TraceDataSink* sink)
14 : sink_(sink), binding_(this, std::move(request)) {}
15
16 TraceRecorderImpl::~TraceRecorderImpl() {
17 }
18
19 void TraceRecorderImpl::TryRead() {
20 binding_.WaitForIncomingMethodCall(MojoDeadline(0));
21 }
22
23 mojo::Handle TraceRecorderImpl::TraceRecorderHandle() const {
24 return binding_.handle();
25 }
26
27 void TraceRecorderImpl::Record(const mojo::String& json) {
28 sink_->AddChunk(json.To<std::string>());
29 }
30
31 } // namespace tracing
OLDNEW
« no previous file with comments | « mojo/services/tracing/trace_recorder_impl.h ('k') | mojo/services/tracing/tracing_app.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698