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

Side by Side Diff: mojo/common/trace_controller_impl.cc

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
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/common/trace_controller_impl.h ('k') | mojo/common/trace_provider_impl.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/common/trace_controller_impl.h"
6
7 #include "base/logging.h"
8 #include "base/trace_event/trace_event.h"
9 #include "mojo/public/cpp/application/application_connection.h"
10 #include "mojo/public/cpp/application/application_impl.h"
11
12 namespace mojo {
13
14 TraceControllerImpl::TraceControllerImpl(
15 InterfaceRequest<tracing::TraceController> request)
16 : tracing_already_started_(false), binding_(this, request.Pass()) {
17 }
18
19 TraceControllerImpl::~TraceControllerImpl() {
20 }
21
22 void TraceControllerImpl::StartTracing(
23 const String& categories,
24 tracing::TraceDataCollectorPtr collector) {
25 DCHECK(!collector_.get());
26 collector_ = collector.Pass();
27 if (!tracing_already_started_) {
28 std::string categories_str = categories.To<std::string>();
29 base::trace_event::TraceLog::GetInstance()->SetEnabled(
30 base::trace_event::CategoryFilter(categories_str),
31 base::trace_event::TraceLog::RECORDING_MODE,
32 base::trace_event::TraceOptions(base::trace_event::RECORD_UNTIL_FULL));
33 }
34 }
35
36 void TraceControllerImpl::StopTracing() {
37 DCHECK(collector_);
38 base::trace_event::TraceLog::GetInstance()->SetDisabled();
39
40 base::trace_event::TraceLog::GetInstance()->Flush(
41 base::Bind(&TraceControllerImpl::SendChunk, base::Unretained(this)));
42 }
43
44 void TraceControllerImpl::SendChunk(
45 const scoped_refptr<base::RefCountedString>& events_str,
46 bool has_more_events) {
47 DCHECK(collector_);
48 collector_->DataCollected(mojo::String(events_str->data()));
49 if (!has_more_events) {
50 collector_.reset();
51 }
52 }
53
54 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/common/trace_controller_impl.h ('k') | mojo/common/trace_provider_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698