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 #ifndef MOJO_APPLICATION_PUBLIC_CPP_APPLICATION_RUNNER_H_ | 5 #ifndef MOJO_APPLICATION_PUBLIC_CPP_APPLICATION_RUNNER_H_ |
6 #define MOJO_APPLICATION_PUBLIC_CPP_APPLICATION_RUNNER_H_ | 6 #define MOJO_APPLICATION_PUBLIC_CPP_APPLICATION_RUNNER_H_ |
7 | 7 |
8 #include "mojo/public/cpp/system/core.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop/message_loop.h" |
| 10 #include "third_party/mojo/src/mojo/public/cpp/system/core.h" |
9 | 11 |
10 namespace mojo { | 12 namespace mojo { |
11 | 13 |
12 class ApplicationDelegate; | 14 class ApplicationDelegate; |
13 | 15 |
14 // A utility for running an Application. The typical use case is to use | 16 // A utility for running a chromium based mojo Application. The typical use |
15 // when writing your MojoMain: | 17 // case is to use when writing your MojoMain: |
16 // | 18 // |
17 // MojoResult MojoMain(MojoHandle application_request) { | 19 // MojoResult MojoMain(MojoHandle shell_handle) { |
18 // mojo::ApplicationRunner runner(new MyApplicationDelegate()); | 20 // mojo::ApplicationRunner runner(new MyDelegate()); |
19 // return runner.Run(application_request); | 21 // return runner.Run(shell_handle); |
20 // } | 22 // } |
21 // | 23 // |
22 // ApplicationRunner takes care of mojo environment initialization and | 24 // ApplicationRunner takes care of chromium environment initialization and |
23 // shutdown, and starting a RunLoop from which your application can run and | 25 // shutdown, and starting a MessageLoop from which your application can run and |
24 // ultimately Quit(). | 26 // ultimately Quit(). |
25 class ApplicationRunner { | 27 class ApplicationRunner { |
26 public: | 28 public: |
27 // Takes ownership of |delegate|. | 29 // Takes ownership of |delegate|. |
28 explicit ApplicationRunner(ApplicationDelegate* delegate); | 30 explicit ApplicationRunner(ApplicationDelegate* delegate); |
29 ~ApplicationRunner(); | 31 ~ApplicationRunner(); |
30 | 32 |
| 33 static void InitBaseCommandLine(); |
| 34 |
| 35 void set_message_loop_type(base::MessageLoop::Type type); |
| 36 |
31 // Once the various parameters have been set above, use Run to initialize an | 37 // Once the various parameters have been set above, use Run to initialize an |
32 // ApplicationImpl wired to the provided delegate, and run a RunLoop until | 38 // ApplicationImpl wired to the provided delegate, and run a MessageLoop until |
33 // the application exits. | 39 // the application exits. |
34 MojoResult Run(MojoHandle application_request); | 40 MojoResult Run(MojoHandle shell_handle); |
35 | 41 |
36 private: | 42 private: |
37 ApplicationDelegate* delegate_; | 43 scoped_ptr<ApplicationDelegate> delegate_; |
| 44 |
| 45 // MessageLoop type. TYPE_CUSTOM is default (MessagePumpMojo will be used as |
| 46 // the underlying message pump). |
| 47 base::MessageLoop::Type message_loop_type_; |
| 48 // Whether Run() has been called. |
| 49 bool has_run_; |
38 | 50 |
39 MOJO_DISALLOW_COPY_AND_ASSIGN(ApplicationRunner); | 51 MOJO_DISALLOW_COPY_AND_ASSIGN(ApplicationRunner); |
40 }; | 52 }; |
41 | 53 |
42 } // namespace mojo | 54 } // namespace mojo |
43 | 55 |
44 #endif // MOJO_APPLICATION_PUBLIC_CPP_APPLICATION_RUNNER_H_ | 56 #endif // MOJO_APPLICATION_PUBLIC_CPP_APPLICATION_RUNNER_H_ |
OLD | NEW |