| 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 MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ | 5 #ifndef MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ |
| 6 #define MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ | 6 #define MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "mojo/public/cpp/application/application_connection.h" | 9 #include "mojo/public/cpp/application/application_connection.h" |
| 10 #include "mojo/public/cpp/application/lib/service_connector.h" | 10 #include "mojo/public/cpp/application/lib/service_connector.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 | 75 |
| 76 // Wait for the ShellPtr's Initialize message. | 76 // Wait for the ShellPtr's Initialize message. |
| 77 bool WaitForInitialize(); | 77 bool WaitForInitialize(); |
| 78 | 78 |
| 79 // Unbind the shell from this application and return its handle. | 79 // Unbind the shell from this application and return its handle. |
| 80 ScopedMessagePipeHandle UnbindShell(); | 80 ScopedMessagePipeHandle UnbindShell(); |
| 81 | 81 |
| 82 // Application implementation. | 82 // Application implementation. |
| 83 void Initialize(Array<String> args) override; | 83 void Initialize(Array<String> args) override; |
| 84 | 84 |
| 85 // Quits the main run loop for this application. |
| 86 static void Terminate(); |
| 87 |
| 85 private: | 88 private: |
| 86 class ShellPtrWatcher; | 89 class ShellPtrWatcher; |
| 87 | 90 |
| 88 void BindShell(ScopedMessagePipeHandle shell_handle); | 91 void BindShell(ScopedMessagePipeHandle shell_handle); |
| 89 void ClearConnections(); | 92 void ClearConnections(); |
| 90 void OnShellError() { | 93 void OnShellError() { |
| 91 ClearConnections(); | 94 ClearConnections(); |
| 92 Terminate(); | 95 Terminate(); |
| 93 }; | 96 } |
| 94 | |
| 95 // Quits the main run loop for this application. | |
| 96 static void Terminate(); | |
| 97 | 97 |
| 98 // Application implementation. | 98 // Application implementation. |
| 99 void AcceptConnection(const String& requestor_url, | 99 void AcceptConnection(const String& requestor_url, |
| 100 ServiceProviderPtr provider) override; | 100 ServiceProviderPtr provider) override; |
| 101 | 101 |
| 102 typedef std::vector<internal::ServiceRegistry*> ServiceRegistryList; | 102 typedef std::vector<internal::ServiceRegistry*> ServiceRegistryList; |
| 103 | 103 |
| 104 bool initialized_; | 104 bool initialized_; |
| 105 ServiceRegistryList incoming_service_registries_; | 105 ServiceRegistryList incoming_service_registries_; |
| 106 ServiceRegistryList outgoing_service_registries_; | 106 ServiceRegistryList outgoing_service_registries_; |
| 107 ApplicationDelegate* delegate_; | 107 ApplicationDelegate* delegate_; |
| 108 ShellPtr shell_; | 108 ShellPtr shell_; |
| 109 ShellPtrWatcher* shell_watch_; | 109 ShellPtrWatcher* shell_watch_; |
| 110 std::vector<std::string> args_; | 110 std::vector<std::string> args_; |
| 111 | 111 |
| 112 MOJO_DISALLOW_COPY_AND_ASSIGN(ApplicationImpl); | 112 MOJO_DISALLOW_COPY_AND_ASSIGN(ApplicationImpl); |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 } // namespace mojo | 115 } // namespace mojo |
| 116 | 116 |
| 117 #endif // MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ | 117 #endif // MOJO_PUBLIC_APPLICATION_APPLICATION_IMPL_H_ |
| OLD | NEW |