blob: 166925976ac8c12ca92bc6624e8b6b840adc3c23 [file] [log] [blame]
// Copyright 2015 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/shapes/shapes_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::ShapesApp shapes_app;
return mojo::RunApplication(application_request, &shapes_app);
}