Nelly Vouzoukidou | 88686a8 | 2016-05-19 18:17:33 +0200 | [diff] [blame] | 1 | // Copyright 2016 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. |
| 4 | |
| 5 | #include "mojo/application/application_runner_chromium.h" |
| 6 | #include "mojo/public/c/system/main.h" |
| 7 | #include "services/icu_data/icu_data_impl.h" |
| 8 | |
| 9 | MojoResult MojoMain(MojoHandle application_request) { |
| 10 | mojo::ApplicationRunnerChromium runner(new icu_data::ICUDataImpl); |
| 11 | return runner.Run(application_request); |
| 12 | } |