OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "mojo/application_manager/shell_impl.h" |
| 6 |
| 7 #include "mojo/application_manager/application_manager.h" |
| 8 #include "mojo/common/common_type_converters.h" |
| 9 #include "mojo/services/content_handler/public/interfaces/content_handler.mojom.
h" |
| 10 |
| 11 namespace mojo { |
| 12 |
| 13 ShellImpl::ShellImpl(ScopedMessagePipeHandle handle, |
| 14 ApplicationManager* manager, |
| 15 const GURL& requested_url, |
| 16 const GURL& url) |
| 17 : ShellImpl(manager, requested_url, url) { |
| 18 binding_.Bind(handle.Pass()); |
| 19 } |
| 20 |
| 21 ShellImpl::ShellImpl(ShellPtr* ptr, |
| 22 ApplicationManager* manager, |
| 23 const GURL& requested_url, |
| 24 const GURL& url) |
| 25 : ShellImpl(manager, requested_url, url) { |
| 26 binding_.Bind(ptr); |
| 27 } |
| 28 |
| 29 ShellImpl::~ShellImpl() { |
| 30 } |
| 31 |
| 32 void ShellImpl::ConnectToClient(const GURL& requestor_url, |
| 33 ServiceProviderPtr service_provider) { |
| 34 client()->AcceptConnection(String::From(requestor_url), |
| 35 service_provider.Pass()); |
| 36 } |
| 37 |
| 38 ShellImpl::ShellImpl(ApplicationManager* manager, |
| 39 const GURL& requested_url, |
| 40 const GURL& url) |
| 41 : manager_(manager), |
| 42 requested_url_(requested_url), |
| 43 url_(url), |
| 44 binding_(this) { |
| 45 binding_.set_error_handler(this); |
| 46 } |
| 47 |
| 48 // Shell implementation: |
| 49 void ShellImpl::ConnectToApplication( |
| 50 const String& app_url, |
| 51 InterfaceRequest<ServiceProvider> in_service_provider) { |
| 52 ServiceProviderPtr out_service_provider; |
| 53 out_service_provider.Bind(in_service_provider.PassMessagePipe()); |
| 54 GURL app_gurl(app_url); |
| 55 if (!app_gurl.is_valid()) { |
| 56 LOG(ERROR) << "Error: invalid URL: " << app_url; |
| 57 return; |
| 58 } |
| 59 manager_->ConnectToApplication(app_gurl, url_, out_service_provider.Pass()); |
| 60 } |
| 61 |
| 62 void ShellImpl::OnConnectionError() { |
| 63 manager_->OnShellImplError(this); |
| 64 } |
| 65 |
| 66 } // namespace mojo |
OLD | NEW |