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

Unified Diff: mojo/public/cpp/application/lib/application_runner_chromium.cc

Issue 441853002: mojo: first take on removing mojo_main_{chromium,standalone}. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/public/cpp/application/lib/application_runner_chromium.cc
diff --git a/mojo/public/cpp/application/lib/application_runner_chromium.cc b/mojo/public/cpp/application/lib/application_runner_chromium.cc
new file mode 100644
index 0000000000000000000000000000000000000000..6f5764b8f3a6e1be0dea2a874e6863efd7091fd1
--- /dev/null
+++ b/mojo/public/cpp/application/lib/application_runner_chromium.cc
@@ -0,0 +1,50 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "mojo/public/cpp/application/application_runner_chromium.h"
+
+#include "base/at_exit.h"
+#include "base/command_line.h"
+#include "base/message_loop/message_loop.h"
+#include "mojo/public/cpp/application/application_delegate.h"
+#include "mojo/public/cpp/application/application_impl.h"
+
+namespace mojo {
+
+// static
+void ApplicationImpl::Terminate() {
+ if (base::MessageLoop::current()->is_running())
+ base::MessageLoop::current()->Quit();
+}
+
+ApplicationRunnerChromium::ApplicationRunnerChromium(
+ ApplicationDelegate* delegate)
+ : delegate_(scoped_ptr<ApplicationDelegate>(delegate)),
+ message_loop_type_(base::MessageLoop::TYPE_DEFAULT) {}
+
+ApplicationRunnerChromium::~ApplicationRunnerChromium() {}
+
+void ApplicationRunnerChromium::set_message_loop_type(
+ base::MessageLoop::Type type) {
+ DCHECK_EQ(base::MessageLoop::TYPE_DEFAULT, message_loop_type_);
+ message_loop_type_ = type;
+}
+
+MojoResult ApplicationRunnerChromium::Run(MojoHandle shell_handle) {
+ base::CommandLine::Init(0, NULL);
+#if !defined(COMPONENT_BUILD)
+ base::AtExitManager at_exit;
+#endif
+
+ {
+ base::MessageLoop loop(message_loop_type_);
+ ApplicationImpl impl(delegate_.get(),
+ MakeScopedHandle(MessagePipeHandle(shell_handle)));
+ loop.Run();
+ }
+ delegate_.reset();
+ return MOJO_RESULT_OK;
+}
+
+} // namespace mojo
« no previous file with comments | « mojo/public/cpp/application/lib/application_runner.cc ('k') | mojo/public/cpp/application/lib/mojo_main_chromium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698