[Android] Introduce new UMA action for when user copies Image URL from context menu
[chromium-blink-merge.git] / mojo / services / tracing / main.cc
blob1810d1b27904b52ea9f5281936cca92e4045de77
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
3 // found in the LICENSE file.
5 #include "mojo/application/public/cpp/application_impl.h"
6 #include "mojo/application/public/cpp/application_runner.h"
7 #include "mojo/public/c/system/main.h"
8 #include "mojo/services/tracing/tracing_app.h"
10 MojoResult MojoMain(MojoHandle shell_handle) {
11 mojo::ApplicationRunner runner(new tracing::TracingApp);
12 return runner.Run(shell_handle);