| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 SHELL_APPLICATION_MANAGER_SHELL_IMPL_H_ | 5 #ifndef SHELL_APPLICATION_MANAGER_SHELL_IMPL_H_ |
| 6 #define SHELL_APPLICATION_MANAGER_SHELL_IMPL_H_ | 6 #define SHELL_APPLICATION_MANAGER_SHELL_IMPL_H_ |
| 7 | 7 |
| 8 #include "mojo/public/cpp/bindings/binding.h" | 8 #include "mojo/public/cpp/bindings/binding.h" |
| 9 #include "mojo/public/cpp/bindings/error_handler.h" | 9 #include "mojo/public/cpp/bindings/error_handler.h" |
| 10 #include "mojo/public/interfaces/application/application.mojom.h" | 10 #include "mojo/public/interfaces/application/application.mojom.h" |
| 11 #include "mojo/public/interfaces/application/shell.mojom.h" | 11 #include "mojo/public/interfaces/application/shell.mojom.h" |
| 12 #include "url/gurl.h" | 12 #include "url/gurl.h" |
| 13 | 13 |
| 14 namespace mojo { | 14 namespace mojo { |
| 15 class ApplicationManager; | 15 class ApplicationManager; |
| 16 | 16 |
| 17 class ShellImpl : public Shell, public ErrorHandler { | 17 class ShellImpl : public Shell, public ErrorHandler { |
| 18 public: | 18 public: |
| 19 ShellImpl(ApplicationPtr application, | 19 ShellImpl(ApplicationPtr application, |
| 20 ApplicationManager* manager, | 20 ApplicationManager* manager, |
| 21 const GURL& requested_url, | 21 // The original URL that was first requested, before any resolution. |
| 22 const GURL& url); | 22 const GURL& original_url, |
| 23 const GURL& resolved_url); |
| 23 | 24 |
| 24 ~ShellImpl() override; | 25 ~ShellImpl() override; |
| 25 | 26 |
| 26 void InitializeApplication(Array<String> args); | 27 void InitializeApplication(Array<String> args); |
| 27 | 28 |
| 28 void ConnectToClient(const GURL& requestor_url, | 29 void ConnectToClient(const GURL& requested_url, |
| 30 const GURL& requestor_url, |
| 29 InterfaceRequest<ServiceProvider> services, | 31 InterfaceRequest<ServiceProvider> services, |
| 30 ServiceProviderPtr exposed_services); | 32 ServiceProviderPtr exposed_services); |
| 31 | 33 |
| 32 Application* application() { return application_.get(); } | 34 Application* application() { return application_.get(); } |
| 33 const GURL& url() const { return url_; } | 35 const GURL& url() const { return url_; } |
| 34 const GURL& requested_url() const { return requested_url_; } | 36 const GURL& requested_url() const { return requested_url_; } |
| 35 | 37 |
| 36 private: | 38 private: |
| 37 // Shell implementation: | 39 // Shell implementation: |
| 38 void ConnectToApplication(const String& app_url, | 40 void ConnectToApplication(const String& app_url, |
| 39 InterfaceRequest<ServiceProvider> services, | 41 InterfaceRequest<ServiceProvider> services, |
| 40 ServiceProviderPtr exposed_services) override; | 42 ServiceProviderPtr exposed_services) override; |
| 41 | 43 |
| 42 // ErrorHandler implementation: | 44 // ErrorHandler implementation: |
| 43 void OnConnectionError() override; | 45 void OnConnectionError() override; |
| 44 | 46 |
| 45 ApplicationManager* const manager_; | 47 ApplicationManager* const manager_; |
| 46 const GURL requested_url_; | 48 const GURL requested_url_; |
| 47 const GURL url_; | 49 const GURL url_; |
| 48 ApplicationPtr application_; | 50 ApplicationPtr application_; |
| 49 Binding<Shell> binding_; | 51 Binding<Shell> binding_; |
| 50 | 52 |
| 51 DISALLOW_COPY_AND_ASSIGN(ShellImpl); | 53 DISALLOW_COPY_AND_ASSIGN(ShellImpl); |
| 52 }; | 54 }; |
| 53 | 55 |
| 54 } // namespace mojo | 56 } // namespace mojo |
| 55 | 57 |
| 56 #endif // SHELL_APPLICATION_MANAGER_SHELL_IMPL_H_ | 58 #endif // SHELL_APPLICATION_MANAGER_SHELL_IMPL_H_ |
| OLD | NEW |