blob: 0d060c137a58c91e34ec6c31e053bcc3228d6c11 [file] [log] [blame]
// Copyright 2016 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 "examples/ui/motown_video/motown_video_app.h"
#include "mojo/environment/scoped_chromium_init.h"
#include "mojo/public/c/system/main.h"
#include "mojo/public/cpp/application/run_application.h"
MojoResult MojoMain(MojoHandle application_request) {
mojo::ScopedChromiumInit init;
examples::MotownVideoApp motown_video_app;
return mojo::RunApplication(application_request, &motown_video_app);
}