summaryrefslogtreecommitdiffstats
path: root/device/devices_app/main.cc
blob: 3541552359a2e2ae9948a4df26f170aeaad3059d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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 "base/sequenced_task_runner.h"
#include "device/devices_app/public/cpp/devices_app_factory.h"
#include "mojo/application/public/cpp/application_delegate.h"
#include "mojo/application/public/cpp/application_runner.h"
#include "mojo/public/c/system/main.h"

MojoResult MojoMain(MojoHandle shell_handle) {
  mojo::ApplicationRunner runner(
      device::DevicesAppFactory::CreateApp().release());
  return runner.Run(shell_handle);
}