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

Unified Diff: mojo/shell/tests/lifecycle/app_client.cc

Issue 1755423002: Add a test for application lifecycle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@27amtest
Patch Set: . Created 4 years, 10 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
« no previous file with comments | « mojo/shell/tests/lifecycle/app_client.h ('k') | mojo/shell/tests/lifecycle/app_manifest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/tests/lifecycle/app_client.cc
diff --git a/mojo/shell/tests/lifecycle/app_client.cc b/mojo/shell/tests/lifecycle/app_client.cc
new file mode 100644
index 0000000000000000000000000000000000000000..657d9676d1571813873d9f04d25cc7551baa2fb9
--- /dev/null
+++ b/mojo/shell/tests/lifecycle/app_client.cc
@@ -0,0 +1,60 @@
+// Copyright 2016 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/shell/tests/lifecycle/app_client.h"
+
+#include "mojo/shell/public/cpp/shell_connection.h"
+
+namespace mojo {
+namespace shell {
+namespace test {
+
+AppClient::AppClient() {}
+AppClient::AppClient(shell::mojom::ShellClientRequest request)
+ : connection_(new ShellConnection(this, std::move(request))) {}
+AppClient::~AppClient() {}
+
+bool AppClient::AcceptConnection(mojo::Connection* connection) {
+ connection->AddInterface<LifecycleControl>(this);
+ return true;
+}
+
+void AppClient::Create(mojo::Connection* connection,
+ LifecycleControlRequest request) {
+ bindings_.AddBinding(this, std::move(request));
+}
+
+void AppClient::Ping(const PingCallback& callback) {
+ callback.Run();
+}
+
+void AppClient::GracefulQuit() {
+ base::MessageLoop::current()->QuitWhenIdle();
+}
+
+void AppClient::Crash() {
+ // Rather than actually crash, which causes a bunch of console spray and
+ // maybe UI clutter on some platforms, just exit without shutting anything
+ // down properly.
+ exit(1);
+}
+
+void AppClient::CloseShellConnection() {
+ DCHECK(runner_);
+ runner_->DestroyShellConnection();
+ // Quit the app once the caller goes away.
+ bindings_.set_connection_error_handler(
+ base::Bind(&AppClient::BindingLost, base::Unretained(this)));
+}
+
+void AppClient::BindingLost() {
+ if (bindings_.empty())
+ GracefulQuit();
+}
+
+} // namespace test
+} // namespace shell
+} // namespace mojo
+
+
« no previous file with comments | « mojo/shell/tests/lifecycle/app_client.h ('k') | mojo/shell/tests/lifecycle/app_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698