| 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 InterfaceRequest<ServiceProvider> services, | |
| 34 ServiceProviderPtr exposed_services) { | |
| 35 client()->AcceptConnection(String::From(requestor_url), services.Pass(), | |
| 36 exposed_services.Pass()); | |
| 37 } | |
| 38 | |
| 39 ShellImpl::ShellImpl(ApplicationManager* manager, | |
| 40 const GURL& requested_url, | |
| 41 const GURL& url) | |
| 42 : manager_(manager), | |
| 43 requested_url_(requested_url), | |
| 44 url_(url), | |
| 45 binding_(this) { | |
| 46 binding_.set_error_handler(this); | |
| 47 } | |
| 48 | |
| 49 // Shell implementation: | |
| 50 void ShellImpl::ConnectToApplication(const String& app_url, | |
| 51 InterfaceRequest<ServiceProvider> services, | |
| 52 ServiceProviderPtr exposed_services) { | |
| 53 GURL app_gurl(app_url); | |
| 54 if (!app_gurl.is_valid()) { | |
| 55 LOG(ERROR) << "Error: invalid URL: " << app_url; | |
| 56 return; | |
| 57 } | |
| 58 manager_->ConnectToApplication(app_gurl, url_, services.Pass(), | |
| 59 exposed_services.Pass()); | |
| 60 } | |
| 61 | |
| 62 void ShellImpl::OnConnectionError() { | |
| 63 manager_->OnShellImplError(this); | |
| 64 } | |
| 65 | |
| 66 } // namespace mojo | |
| OLD | NEW |