| 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/at_exit.h" | 5 #include "base/at_exit.h" |
| 6 #include "base/base_paths.h" | 6 #include "base/base_paths.h" |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| 11 #include "mojo/public/cpp/application/application_connection.h" | 11 #include "mojo/public/cpp/application/application_connection.h" |
| 12 #include "mojo/public/cpp/application/application_delegate.h" | 12 #include "mojo/public/cpp/application/application_delegate.h" |
| 13 #include "mojo/public/cpp/application/application_impl.h" | 13 #include "mojo/public/cpp/application/application_runner_chromium.h" |
| 14 #include "mojo/public/cpp/application/interface_factory.h" | 14 #include "mojo/public/cpp/application/interface_factory.h" |
| 15 #include "mojo/public/cpp/bindings/interface_ptr.h" | 15 #include "mojo/public/cpp/bindings/interface_ptr.h" |
| 16 #include "mojo/public/cpp/system/main.h" |
| 16 #include "mojo/services/network/network_context.h" | 17 #include "mojo/services/network/network_context.h" |
| 17 #include "mojo/services/network/network_service_impl.h" | 18 #include "mojo/services/network/network_service_impl.h" |
| 18 | 19 |
| 19 class Delegate : public mojo::ApplicationDelegate, | 20 class Delegate : public mojo::ApplicationDelegate, |
| 20 public mojo::InterfaceFactory<mojo::NetworkService> { | 21 public mojo::InterfaceFactory<mojo::NetworkService> { |
| 21 public: | 22 public: |
| 22 Delegate() {} | 23 Delegate() {} |
| 23 | 24 |
| 24 virtual void Initialize(mojo::ApplicationImpl* app) OVERRIDE { | 25 virtual void Initialize(mojo::ApplicationImpl* app) OVERRIDE { |
| 25 base::FilePath base_path; | 26 base::FilePath base_path; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 41 mojo::ApplicationConnection* connection, | 42 mojo::ApplicationConnection* connection, |
| 42 mojo::InterfaceRequest<mojo::NetworkService> request) OVERRIDE { | 43 mojo::InterfaceRequest<mojo::NetworkService> request) OVERRIDE { |
| 43 mojo::BindToRequest( | 44 mojo::BindToRequest( |
| 44 new mojo::NetworkServiceImpl(connection, context_.get()), &request); | 45 new mojo::NetworkServiceImpl(connection, context_.get()), &request); |
| 45 } | 46 } |
| 46 | 47 |
| 47 private: | 48 private: |
| 48 scoped_ptr<mojo::NetworkContext> context_; | 49 scoped_ptr<mojo::NetworkContext> context_; |
| 49 }; | 50 }; |
| 50 | 51 |
| 51 extern "C" APPLICATION_EXPORT MojoResult CDECL MojoMain( | 52 MojoResult MojoMain(MojoHandle shell_handle) { |
| 52 MojoHandle shell_handle) { | 53 mojo::ApplicationRunnerChromium runner(new Delegate); |
| 53 base::CommandLine::Init(0, NULL); | 54 runner.set_message_loop_type(base::MessageLoop::TYPE_IO); |
| 54 #if !defined(COMPONENT_BUILD) | 55 return runner.Run(shell_handle); |
| 55 base::AtExitManager at_exit; | |
| 56 #endif | |
| 57 | |
| 58 // The Delegate owns the NetworkContext, which needs to outlive | |
| 59 // MessageLoopForIO. Destruction of the message loop will serve to | |
| 60 // invalidate connections made to network services (URLLoader) and cause | |
| 61 // the service instances to be cleaned up as a result of observing pipe | |
| 62 // errors. This is important as ~URLRequestContext asserts that no out- | |
| 63 // standing URLRequests exist. | |
| 64 Delegate delegate; | |
| 65 { | |
| 66 // The IO message loop allows us to use net::URLRequest on this thread. | |
| 67 base::MessageLoopForIO loop; | |
| 68 | |
| 69 mojo::ApplicationImpl app( | |
| 70 &delegate, | |
| 71 mojo::MakeScopedHandle(mojo::MessagePipeHandle(shell_handle))); | |
| 72 | |
| 73 loop.Run(); | |
| 74 } | |
| 75 return MOJO_RESULT_OK; | |
| 76 } | 56 } |
| OLD | NEW |