Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1168)

Unified Diff: mojo/services/network/main.cc

Issue 441853002: mojo: first take on removing mojo_main_{chromium,standalone}. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rev Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/services/network/main.cc
diff --git a/mojo/services/network/main.cc b/mojo/services/network/main.cc
index bdfbda2412b26282a3fb39aec210ebdf2b35ff6b..e3a5c08f78bdd32befa3e88b3d12a82fec078afa 100644
--- a/mojo/services/network/main.cc
+++ b/mojo/services/network/main.cc
@@ -11,6 +11,7 @@
#include "mojo/public/cpp/application/application_connection.h"
#include "mojo/public/cpp/application/application_delegate.h"
#include "mojo/public/cpp/application/application_impl.h"
+#include "mojo/public/cpp/application/application_runner_chromium.h"
#include "mojo/public/cpp/application/interface_factory.h"
#include "mojo/public/cpp/bindings/interface_ptr.h"
#include "mojo/services/network/network_context.h"
@@ -50,27 +51,7 @@ class Delegate : public mojo::ApplicationDelegate,
extern "C" APPLICATION_EXPORT MojoResult CDECL MojoMain(
MojoHandle shell_handle) {
- base::CommandLine::Init(0, NULL);
-#if !defined(COMPONENT_BUILD)
- base::AtExitManager at_exit;
-#endif
-
- // The Delegate owns the NetworkContext, which needs to outlive
- // MessageLoopForIO. Destruction of the message loop will serve to
- // invalidate connections made to network services (URLLoader) and cause
- // the service instances to be cleaned up as a result of observing pipe
- // errors. This is important as ~URLRequestContext asserts that no out-
- // standing URLRequests exist.
- Delegate delegate;
- {
- // The IO message loop allows us to use net::URLRequest on this thread.
- base::MessageLoopForIO loop;
-
- mojo::ApplicationImpl app(
- &delegate,
- mojo::MakeScopedHandle(mojo::MessagePipeHandle(shell_handle)));
-
- loop.Run();
- }
- return MOJO_RESULT_OK;
+ mojo::ApplicationRunnerChromium app(make_scoped_delegate(new Delegate));
+ app.set_loop_type(base::MessageLoop::TYPE_IO);
+ return app.Run(shell_handle);
}

Powered by Google App Engine
This is Rietveld 408576698