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

Side by Side Diff: services/tracing/public/cpp/tracing_impl.cc

Issue 2182643003: Remove shell::Connection* parameter to InterfaceFactory<T>::Create() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 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 | « services/tracing/public/cpp/tracing_impl.h ('k') | 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
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 #ifdef NDEBUG 60 #ifdef NDEBUG
61 if (base::CommandLine::ForCurrentProcess()->HasSwitch( 61 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
62 tracing::kEarlyTracing)) { 62 tracing::kEarlyTracing)) {
63 provider_impl_.ForceEnableTracing(); 63 provider_impl_.ForceEnableTracing();
64 } 64 }
65 #else 65 #else
66 provider_impl_.ForceEnableTracing(); 66 provider_impl_.ForceEnableTracing();
67 #endif 67 #endif
68 } 68 }
69 69
70 void TracingImpl::Create(shell::Connection* connection, 70 void TracingImpl::Create(const shell::Identity& remote_identity,
71 tracing::TraceProviderRequest request) { 71 tracing::TraceProviderRequest request) {
72 provider_impl_.Bind(std::move(request)); 72 provider_impl_.Bind(std::move(request));
73 } 73 }
74 74
75 } // namespace mojo 75 } // namespace mojo
OLDNEW
« no previous file with comments | « services/tracing/public/cpp/tracing_impl.h ('k') | services/tracing/tracing_app.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698