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

Side by Side Diff: mojo/services/tracing/public/cpp/trace_provider_impl.cc

Issue 1877753003: Move mojo\shell to services\shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@62scan
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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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 #include "mojo/services/tracing/public/cpp/trace_provider_impl.h" 5 #include "mojo/services/tracing/public/cpp/trace_provider_impl.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/weak_ptr.h" 11 #include "base/memory/weak_ptr.h"
12 #include "base/time/time.h" 12 #include "base/time/time.h"
13 #include "base/trace_event/trace_config.h" 13 #include "base/trace_event/trace_config.h"
14 #include "base/trace_event/trace_event.h" 14 #include "base/trace_event/trace_event.h"
15 #include "mojo/shell/public/cpp/connection.h" 15 #include "services/shell/public/cpp/connection.h"
16 16
17 namespace mojo { 17 namespace mojo {
18 18
19 TraceProviderImpl::TraceProviderImpl() 19 TraceProviderImpl::TraceProviderImpl()
20 : binding_(this), tracing_forced_(false), weak_factory_(this) {} 20 : binding_(this), tracing_forced_(false), weak_factory_(this) {}
21 21
22 TraceProviderImpl::~TraceProviderImpl() { 22 TraceProviderImpl::~TraceProviderImpl() {
23 StopTracing(); 23 StopTracing();
24 } 24 }
25 25
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 // events. Empty string is not a valid chunk to record so skip in this case. 93 // events. Empty string is not a valid chunk to record so skip in this case.
94 if (!events_str->data().empty()) { 94 if (!events_str->data().empty()) {
95 recorder_->Record(mojo::String(events_str->data())); 95 recorder_->Record(mojo::String(events_str->data()));
96 } 96 }
97 if (!has_more_events) { 97 if (!has_more_events) {
98 recorder_.reset(); 98 recorder_.reset();
99 } 99 }
100 } 100 }
101 101
102 } // namespace mojo 102 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/services/tracing/public/cpp/BUILD.gn ('k') | mojo/services/tracing/public/cpp/tracing_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698