OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 "services/tracing/public/cpp/tracing_impl.h" | 5 #include "services/tracing/public/cpp/tracing_impl.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
10 #include "base/synchronization/lock.h" | 10 #include "base/synchronization/lock.h" |
(...skipping 23 matching lines...) Expand all Loading... |
34 bool g_tracing_singleton_created = false; | 34 bool g_tracing_singleton_created = false; |
35 | 35 |
36 } | 36 } |
37 | 37 |
38 TracingImpl::TracingImpl() { | 38 TracingImpl::TracingImpl() { |
39 } | 39 } |
40 | 40 |
41 TracingImpl::~TracingImpl() { | 41 TracingImpl::~TracingImpl() { |
42 } | 42 } |
43 | 43 |
44 void TracingImpl::Initialize(Connector* connector, const std::string& url) { | 44 void TracingImpl::Initialize(shell::Connector* connector, |
| 45 const std::string& url) { |
45 { | 46 { |
46 base::AutoLock lock(g_singleton_lock.Get()); | 47 base::AutoLock lock(g_singleton_lock.Get()); |
47 if (g_tracing_singleton_created) | 48 if (g_tracing_singleton_created) |
48 return; | 49 return; |
49 g_tracing_singleton_created = true; | 50 g_tracing_singleton_created = true; |
50 } | 51 } |
51 | 52 |
52 // This will only set the name for the first app in a loaded mojo file. It's | 53 // This will only set the name for the first app in a loaded mojo file. It's |
53 // up to something like CoreServices to name its own child threads. | 54 // up to something like CoreServices to name its own child threads. |
54 base::PlatformThread::SetName(url); | 55 base::PlatformThread::SetName(url); |
55 | 56 |
56 connection_ = connector->Connect("mojo:tracing"); | 57 connection_ = connector->Connect("mojo:tracing"); |
57 connection_->AddInterface(this); | 58 connection_->AddInterface(this); |
58 | 59 |
59 #ifdef NDEBUG | 60 #ifdef NDEBUG |
60 if (base::CommandLine::ForCurrentProcess()->HasSwitch( | 61 if (base::CommandLine::ForCurrentProcess()->HasSwitch( |
61 tracing::kEarlyTracing)) { | 62 tracing::kEarlyTracing)) { |
62 provider_impl_.ForceEnableTracing(); | 63 provider_impl_.ForceEnableTracing(); |
63 } | 64 } |
64 #else | 65 #else |
65 provider_impl_.ForceEnableTracing(); | 66 provider_impl_.ForceEnableTracing(); |
66 #endif | 67 #endif |
67 } | 68 } |
68 | 69 |
69 void TracingImpl::Create(Connection* connection, | 70 void TracingImpl::Create(shell::Connection* connection, |
70 InterfaceRequest<tracing::TraceProvider> request) { | 71 InterfaceRequest<tracing::TraceProvider> request) { |
71 provider_impl_.Bind(std::move(request)); | 72 provider_impl_.Bind(std::move(request)); |
72 } | 73 } |
73 | 74 |
74 } // namespace mojo | 75 } // namespace mojo |
OLD | NEW |