summaryrefslogtreecommitdiff
path: root/chromium/mojo/services/tracing/main.cc
blob: b0717ef46a3e3a67e7e64247464ad5e489624cb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "mojo/application/application_runner_chromium.h"
#include "mojo/application/public/cpp/application_impl.h"
#include "mojo/public/c/system/main.h"
#include "mojo/services/tracing/tracing_app.h"

MojoResult MojoMain(MojoHandle shell_handle) {
  mojo::ApplicationRunnerChromium runner(new tracing::TracingApp);
  return runner.Run(shell_handle);
}