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 "base/basictypes.h" | 5 #include "base/basictypes.h" |
6 #include "base/bind.h" | 6 #include "base/bind.h" |
7 #include "mojo/public/cpp/application/application_delegate.h" | 7 #include "mojo/public/cpp/application/application_delegate.h" |
| 8 #include "mojo/public/cpp/application/application_export.h" |
8 #include "mojo/public/cpp/application/application_impl.h" | 9 #include "mojo/public/cpp/application/application_impl.h" |
| 10 #include "mojo/public/cpp/application/application_runner_chromium.h" |
9 #include "mojo/public/interfaces/application/service_provider.mojom.h" | 11 #include "mojo/public/interfaces/application/service_provider.mojom.h" |
10 #include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h" | 12 #include "mojo/services/public/interfaces/view_manager/view_manager.mojom.h" |
11 | 13 |
12 namespace mojo { | 14 namespace mojo { |
13 namespace examples { | 15 namespace examples { |
14 | 16 |
15 // ViewManagerInit is responsible for establishing the initial connection to | 17 // ViewManagerInit is responsible for establishing the initial connection to |
16 // the view manager. When established it loads |mojo_aura_demo|. | 18 // the view manager. When established it loads |mojo_aura_demo|. |
17 class ViewManagerInit : public ApplicationDelegate { | 19 class ViewManagerInit : public ApplicationDelegate { |
18 public: | 20 public: |
(...skipping 13 matching lines...) Expand all Loading... |
32 DCHECK(result); | 34 DCHECK(result); |
33 VLOG(1) << "ViewManagerInit::DidConnection result=" << result; | 35 VLOG(1) << "ViewManagerInit::DidConnection result=" << result; |
34 } | 36 } |
35 | 37 |
36 ViewManagerInitServicePtr view_manager_init_; | 38 ViewManagerInitServicePtr view_manager_init_; |
37 | 39 |
38 DISALLOW_COPY_AND_ASSIGN(ViewManagerInit); | 40 DISALLOW_COPY_AND_ASSIGN(ViewManagerInit); |
39 }; | 41 }; |
40 | 42 |
41 } // namespace examples | 43 } // namespace examples |
| 44 } // namespace mojo |
42 | 45 |
43 // static | 46 extern "C" APPLICATION_EXPORT MojoResult CDECL MojoMain( |
44 ApplicationDelegate* ApplicationDelegate::Create() { | 47 MojoHandle shell_handle) { |
45 return new examples::ViewManagerInit(); | 48 mojo::ApplicationRunnerChromium runner(new mojo::examples::ViewManagerInit); |
| 49 return runner.Run(shell_handle); |
46 } | 50 } |
47 | |
48 } // namespace mojo | |
OLD | NEW |