OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 SERVICES_SHELL_PUBLIC_CPP_SHELL_CLIENT_H_ | 5 #ifndef SERVICES_SHELL_PUBLIC_CPP_SHELL_CLIENT_H_ |
6 #define SERVICES_SHELL_PUBLIC_CPP_SHELL_CLIENT_H_ | 6 #define SERVICES_SHELL_PUBLIC_CPP_SHELL_CLIENT_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "services/shell/public/cpp/connection.h" | 12 #include "services/shell/public/cpp/connection.h" |
13 #include "services/shell/public/cpp/identity.h" | 13 #include "services/shell/public/cpp/identity.h" |
14 | 14 |
15 namespace mojo { | 15 namespace shell { |
16 | 16 |
17 class Connector; | 17 class Connector; |
18 | 18 |
19 // An interface representing an instance "known to the Mojo Shell". The | 19 // An interface representing an instance "known to the Mojo Shell". The |
20 // implementation receives lifecycle messages for the instance and gets the | 20 // implementation receives lifecycle messages for the instance and gets the |
21 // opportunity to handle inbound connections brokered by the Shell. Every client | 21 // opportunity to handle inbound connections brokered by the Shell. Every client |
22 // of ShellConnection must implement this interface, and instances of this | 22 // of ShellConnection must implement this interface, and instances of this |
23 // interface must outlive the ShellConnection. | 23 // interface must outlive the ShellConnection. |
24 class ShellClient { | 24 class ShellClient { |
25 public: | 25 public: |
(...skipping 22 matching lines...) Expand all Loading... |
48 // prevent it from being run. The default implementation returns true. | 48 // prevent it from being run. The default implementation returns true. |
49 // When used in conjunction with ApplicationRunner, returning true here quits | 49 // When used in conjunction with ApplicationRunner, returning true here quits |
50 // the message loop created by ApplicationRunner, which results in the app | 50 // the message loop created by ApplicationRunner, which results in the app |
51 // quitting. | 51 // quitting. |
52 virtual bool ShellConnectionLost(); | 52 virtual bool ShellConnectionLost(); |
53 | 53 |
54 private: | 54 private: |
55 DISALLOW_COPY_AND_ASSIGN(ShellClient); | 55 DISALLOW_COPY_AND_ASSIGN(ShellClient); |
56 }; | 56 }; |
57 | 57 |
58 } // namespace mojo | 58 } // namespace shell |
59 | 59 |
60 #endif // SERVICES_SHELL_PUBLIC_CPP_SHELL_CLIENT_H_ | 60 #endif // SERVICES_SHELL_PUBLIC_CPP_SHELL_CLIENT_H_ |
OLD | NEW |