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

Unified Diff: services/tracing/tracing_app.h

Issue 1882423004: Move shell service to toplevel shell namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/tracing/public/cpp/tracing_impl.cc ('k') | services/tracing/tracing_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/tracing/tracing_app.h
diff --git a/services/tracing/tracing_app.h b/services/tracing/tracing_app.h
index 48b67e48e3b965490af945dcaf18d71a7827be5f..b1dcd9f37464164a4e642bd36b8096a224044447 100644
--- a/services/tracing/tracing_app.h
+++ b/services/tracing/tracing_app.h
@@ -22,27 +22,27 @@
namespace tracing {
class TracingApp
- : public mojo::ShellClient,
- public mojo::InterfaceFactory<TraceCollector>,
+ : public shell::ShellClient,
+ public shell::InterfaceFactory<TraceCollector>,
public TraceCollector,
- public mojo::InterfaceFactory<StartupPerformanceDataCollector>,
+ public shell::InterfaceFactory<StartupPerformanceDataCollector>,
public StartupPerformanceDataCollector {
public:
TracingApp();
~TracingApp() override;
private:
- // mojo::ShellClient implementation.
- bool AcceptConnection(mojo::Connection* connection) override;
+ // shell::ShellClient implementation.
+ bool AcceptConnection(shell::Connection* connection) override;
bool ShellConnectionLost() override;
- // mojo::InterfaceFactory<TraceCollector> implementation.
- void Create(mojo::Connection* connection,
+ // shell::InterfaceFactory<TraceCollector> implementation.
+ void Create(shell::Connection* connection,
mojo::InterfaceRequest<TraceCollector> request) override;
- // mojo::InterfaceFactory<StartupPerformanceDataCollector> implementation.
+ // shell::InterfaceFactory<StartupPerformanceDataCollector> implementation.
void Create(
- mojo::Connection* connection,
+ shell::Connection* connection,
mojo::InterfaceRequest<StartupPerformanceDataCollector> request) override;
// tracing::TraceCollector implementation.
« no previous file with comments | « services/tracing/public/cpp/tracing_impl.cc ('k') | services/tracing/tracing_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698