blob: 2c9ca06c3a900fb838ebb0da31f25364f0b0850a [file] [log] [blame]
// 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/public/c/system/main.h"
#include "mojo/public/cpp/application/run_application.h"
#include "services/tracing/tracing_app.h"
MojoResult MojoMain(MojoHandle application_request) {
tracing::TracingApp tracing_app;
return mojo::RunMainApplication(application_request, &tracing_app);
}