Roll src/third_party/WebKit 73b5774:da0ca61 (svn 201762:201763)
[chromium-blink-merge.git] / device / devices_app / main.cc
blob4c8e61bbb4155091cb4d95373c7edcc6b0dc45f2
1 // Copyright 2015 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 "base/sequenced_task_runner.h"
6 #include "device/devices_app/public/cpp/devices_app_factory.h"
7 #include "mojo/application/public/cpp/application_delegate.h"
8 #include "mojo/application/public/cpp/application_runner.h"
9 #include "third_party/mojo/src/mojo/public/c/system/main.h"
11 MojoResult MojoMain(MojoHandle shell_handle) {
12 mojo::ApplicationRunner runner(
13 device::DevicesAppFactory::CreateApp(nullptr).release());
14 return runner.Run(shell_handle);