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

Side by Side Diff: mojo/shell/tests/lifecycle/app_client.h

Issue 1821913002: Revert of Quit the message loop by default in ShellConnectionLost when ApplicationRunner is used (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef MOJO_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ 5 #ifndef MOJO_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_
6 #define MOJO_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ 6 #define MOJO_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_
7 7
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "mojo/public/cpp/bindings/binding_set.h" 10 #include "mojo/public/cpp/bindings/binding_set.h"
(...skipping 19 matching lines...) Expand all
30 AppClient(); 30 AppClient();
31 explicit AppClient(shell::mojom::ShellClientRequest request); 31 explicit AppClient(shell::mojom::ShellClientRequest request);
32 ~AppClient() override; 32 ~AppClient() override;
33 33
34 void set_runner(ApplicationRunner* runner) { 34 void set_runner(ApplicationRunner* runner) {
35 runner_ = runner; 35 runner_ = runner;
36 } 36 }
37 37
38 // ShellClient: 38 // ShellClient:
39 bool AcceptConnection(Connection* connection) override; 39 bool AcceptConnection(Connection* connection) override;
40 void ShellConnectionLost() override;
40 41
41 // InterfaceFactory<LifecycleControl>: 42 // InterfaceFactory<LifecycleControl>:
42 void Create(Connection* connection, LifecycleControlRequest request) override; 43 void Create(Connection* connection, LifecycleControlRequest request) override;
43 44
44 // LifecycleControl: 45 // LifecycleControl:
45 void Ping(const PingCallback& callback) override; 46 void Ping(const PingCallback& callback) override;
46 void GracefulQuit() override; 47 void GracefulQuit() override;
47 void Crash() override; 48 void Crash() override;
48 void CloseShellConnection() override; 49 void CloseShellConnection() override;
49 50
50 private: 51 private:
51 void BindingLost(); 52 void BindingLost();
52 53
53 ApplicationRunner* runner_ = nullptr; 54 ApplicationRunner* runner_ = nullptr;
54 BindingSet<LifecycleControl> bindings_; 55 BindingSet<LifecycleControl> bindings_;
55 scoped_ptr<ShellConnection> connection_; 56 scoped_ptr<ShellConnection> connection_;
56 57
57 DISALLOW_COPY_AND_ASSIGN(AppClient); 58 DISALLOW_COPY_AND_ASSIGN(AppClient);
58 }; 59 };
59 60
60 } // namespace test 61 } // namespace test
61 } // namespace shell 62 } // namespace shell
62 } // namespace mojo 63 } // namespace mojo
63 64
64 #endif // MOJO_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ 65 #endif // MOJO_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_
OLDNEW
« no previous file with comments | « mojo/shell/tests/connect/connect_test_package.cc ('k') | mojo/shell/tests/lifecycle/app_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698