| 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 #include "shell/application_manager/shell_impl.h" | 5 #include "shell/application_manager/shell_impl.h" |
| 6 | 6 |
| 7 #include "mojo/common/common_type_converters.h" | 7 #include "mojo/common/common_type_converters.h" |
| 8 #include "mojo/services/content_handler/public/interfaces/content_handler.mojom.
h" | 8 #include "mojo/services/content_handler/public/interfaces/content_handler.mojom.
h" |
| 9 #include "shell/application_manager/application_manager.h" | 9 #include "shell/application_manager/application_manager.h" |
| 10 | 10 |
| 11 namespace mojo { | 11 namespace mojo { |
| 12 | 12 |
| 13 ShellImpl::ShellImpl(ApplicationPtr application, | 13 ShellImpl::ShellImpl(ApplicationPtr application, |
| 14 ApplicationManager* manager, | 14 ApplicationManager* manager, |
| 15 const GURL& requested_url, | 15 const GURL& requested_url, |
| 16 const GURL& url) | 16 const GURL& url, |
| 17 QueryHandlingBehavior query_behavior) |
| 17 : manager_(manager), | 18 : manager_(manager), |
| 18 requested_url_(requested_url), | 19 requested_url_(requested_url), |
| 19 url_(url), | 20 url_(url), |
| 20 application_(application.Pass()), | 21 application_(application.Pass()), |
| 21 binding_(this) { | 22 binding_(this), |
| 23 handles_query_(query_behavior == SHELL_HANDLES_QUERY) { |
| 22 binding_.set_error_handler(this); | 24 binding_.set_error_handler(this); |
| 23 } | 25 } |
| 24 | 26 |
| 25 ShellImpl::~ShellImpl() { | 27 ShellImpl::~ShellImpl() { |
| 26 } | 28 } |
| 27 | 29 |
| 28 void ShellImpl::InitializeApplication(Array<String> args) { | 30 void ShellImpl::InitializeApplication(Array<String> args) { |
| 29 ShellPtr shell; | 31 ShellPtr shell; |
| 30 binding_.Bind(GetProxy(&shell)); | 32 binding_.Bind(GetProxy(&shell)); |
| 31 application_->Initialize(shell.Pass(), args.Pass(), url_.spec()); | 33 application_->Initialize(shell.Pass(), args.Pass(), url_.spec()); |
| 32 } | 34 } |
| 33 | 35 |
| 34 void ShellImpl::ConnectToClient(const GURL& requestor_url, | 36 void ShellImpl::ConnectToClient(const GURL& requested_url, |
| 37 const GURL& requestor_url, |
| 35 InterfaceRequest<ServiceProvider> services, | 38 InterfaceRequest<ServiceProvider> services, |
| 36 ServiceProviderPtr exposed_services) { | 39 ServiceProviderPtr exposed_services) { |
| 37 application_->AcceptConnection(String::From(requestor_url), services.Pass(), | 40 application_->AcceptConnection(String::From(requestor_url), services.Pass(), |
| 38 exposed_services.Pass()); | 41 exposed_services.Pass(), requested_url.spec()); |
| 39 } | 42 } |
| 40 | 43 |
| 41 // Shell implementation: | 44 // Shell implementation: |
| 42 void ShellImpl::ConnectToApplication(const String& app_url, | 45 void ShellImpl::ConnectToApplication(const String& app_url, |
| 43 InterfaceRequest<ServiceProvider> services, | 46 InterfaceRequest<ServiceProvider> services, |
| 44 ServiceProviderPtr exposed_services) { | 47 ServiceProviderPtr exposed_services) { |
| 45 GURL app_gurl(app_url); | 48 GURL app_gurl(app_url); |
| 46 if (!app_gurl.is_valid()) { | 49 if (!app_gurl.is_valid()) { |
| 47 LOG(ERROR) << "Error: invalid URL: " << app_url; | 50 LOG(ERROR) << "Error: invalid URL: " << app_url; |
| 48 return; | 51 return; |
| 49 } | 52 } |
| 50 manager_->ConnectToApplication(app_gurl, url_, services.Pass(), | 53 manager_->ConnectToApplication(app_gurl, url_, services.Pass(), |
| 51 exposed_services.Pass()); | 54 exposed_services.Pass()); |
| 52 } | 55 } |
| 53 | 56 |
| 54 void ShellImpl::OnConnectionError() { | 57 void ShellImpl::OnConnectionError() { |
| 55 manager_->OnShellImplError(this); | 58 manager_->OnShellImplError(this); |
| 56 } | 59 } |
| 57 | 60 |
| 58 } // namespace mojo | 61 } // namespace mojo |
| OLD | NEW |