OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "mojo/application/application_runner_chromium.h" | 5 #include "mojo/application/application_runner_chromium.h" |
6 #include "mojo/common/weak_binding_set.h" | 6 #include "mojo/common/weak_binding_set.h" |
7 #include "mojo/public/c/system/main.h" | 7 #include "mojo/public/c/system/main.h" |
8 #include "mojo/public/cpp/application/application_connection.h" | 8 #include "mojo/public/cpp/application/application_connection.h" |
9 #include "mojo/public/cpp/application/application_delegate.h" | 9 #include "mojo/public/cpp/application/application_delegate.h" |
10 #include "mojo/public/cpp/application/interface_factory.h" | 10 #include "mojo/public/cpp/application/interface_factory.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 memcpy(ptr, kICUData.data, kICUData.size); | 61 memcpy(ptr, kICUData.data, kICUData.size); |
62 rv = mojo::UnmapBuffer(ptr); | 62 rv = mojo::UnmapBuffer(ptr); |
63 CHECK_EQ(rv, MOJO_RESULT_OK); | 63 CHECK_EQ(rv, MOJO_RESULT_OK); |
64 } | 64 } |
65 | 65 |
66 scoped_ptr<mojo::SharedBuffer> buffer_; | 66 scoped_ptr<mojo::SharedBuffer> buffer_; |
67 mojo::WeakBindingSet<ICUData> bindings_; | 67 mojo::WeakBindingSet<ICUData> bindings_; |
68 }; | 68 }; |
69 } | 69 } |
70 | 70 |
71 MojoResult MojoMain(MojoHandle shell_handle) { | 71 MojoResult MojoMain(MojoHandle application_request) { |
72 mojo::ApplicationRunnerChromium runner(new icu_data::ICUDataImpl); | 72 mojo::ApplicationRunnerChromium runner(new icu_data::ICUDataImpl); |
73 return runner.Run(shell_handle); | 73 return runner.Run(application_request); |
74 } | 74 } |
OLD | NEW |