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

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

Issue 394903005: mojo: terminate apps if the shell goes away (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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_impl_chromium.cc
diff --git a/mojo/public/cpp/application/lib/application_impl_chromium.cc b/mojo/public/cpp/application/lib/application_impl_chromium.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e9db4fcb227917c7762673c70264cf896f177e9d
--- /dev/null
+++ b/mojo/public/cpp/application/lib/application_impl_chromium.cc
@@ -0,0 +1,15 @@
+// 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 "base/message_loop/message_loop.h"
+#include "mojo/public/cpp/application/application_impl.h"
+
+namespace mojo {
+
+void ApplicationImpl::TerminateImpl() {
+ if (base::MessageLoop::current()->is_running())
+ base::MessageLoop::current()->Quit();
+}
+
+} // namespace mojo

Powered by Google App Engine
This is Rietveld 408576698