OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 <memory> | 5 #include <memory> |
6 | 6 |
7 #include "mojo/public/c/system/main.h" | 7 #include "mojo/public/c/system/main.h" |
8 #include "mojo/public/cpp/application/application_delegate.h" | 8 #include "mojo/public/cpp/application/application_delegate.h" |
9 #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.h" | 10 #include "mojo/public/cpp/application/application_runner.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 private: | 26 private: |
27 // ApplicationDelegate: | 27 // ApplicationDelegate: |
28 bool ConfigureIncomingConnection( | 28 bool ConfigureIncomingConnection( |
29 mojo::ApplicationConnection* connection) override { | 29 mojo::ApplicationConnection* connection) override { |
30 connection->AddService(this); | 30 connection->AddService(this); |
31 return true; | 31 return true; |
32 } | 32 } |
33 | 33 |
34 // InterfaceFactory<HttpServerFactory>: | 34 // InterfaceFactory<HttpServerFactory>: |
35 void Create(mojo::ApplicationConnection* connection, | 35 void Create(const mojo::ConnectionContext& connection_context, |
36 mojo::InterfaceRequest<HttpServerFactory> request) override { | 36 mojo::InterfaceRequest<HttpServerFactory> request) override { |
37 if (!http_server_factory_) { | 37 if (!http_server_factory_) { |
38 http_server_factory_.reset(new HttpServerFactoryImpl(app_)); | 38 http_server_factory_.reset(new HttpServerFactoryImpl(app_)); |
39 } | 39 } |
40 | 40 |
41 http_server_factory_->AddBinding(request.Pass()); | 41 http_server_factory_->AddBinding(request.Pass()); |
42 } | 42 } |
43 | 43 |
44 mojo::ApplicationImpl* app_; | 44 mojo::ApplicationImpl* app_; |
45 std::unique_ptr<HttpServerFactoryImpl> http_server_factory_; | 45 std::unique_ptr<HttpServerFactoryImpl> http_server_factory_; |
46 }; | 46 }; |
47 | 47 |
48 } // namespace http_server | 48 } // namespace http_server |
49 | 49 |
50 MojoResult MojoMain(MojoHandle application_request) { | 50 MojoResult MojoMain(MojoHandle application_request) { |
51 mojo::ApplicationRunner runner(std::unique_ptr<http_server::HttpServerApp>( | 51 mojo::ApplicationRunner runner(std::unique_ptr<http_server::HttpServerApp>( |
52 new http_server::HttpServerApp())); | 52 new http_server::HttpServerApp())); |
53 return runner.Run(application_request); | 53 return runner.Run(application_request); |
54 } | 54 } |
OLD | NEW |