1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "mojo/shell/shell_impl.h"
#include "mojo/common/common_type_converters.h"
#include "mojo/common/url_type_converters.h"
#include "mojo/shell/application_manager.h"
#include "third_party/mojo_services/src/content_handler/public/interfaces/content_handler.mojom.h"
namespace mojo {
namespace shell {
ShellImpl::ShellImpl(ApplicationPtr application,
ApplicationManager* manager,
const Identity& identity,
const base::Closure& on_application_end)
: manager_(manager),
identity_(identity),
on_application_end_(on_application_end),
application_(application.Pass()),
binding_(this) {
binding_.set_error_handler(this);
}
ShellImpl::~ShellImpl() {
}
void ShellImpl::InitializeApplication(Array<String> args) {
ShellPtr shell;
binding_.Bind(GetProxy(&shell));
application_->Initialize(shell.Pass(), args.Pass(), identity_.url.spec());
}
void ShellImpl::ConnectToClient(const GURL& requested_url,
const GURL& requestor_url,
InterfaceRequest<ServiceProvider> services,
ServiceProviderPtr exposed_services) {
application_->AcceptConnection(String::From(requestor_url), services.Pass(),
exposed_services.Pass(), requested_url.spec());
}
// Shell implementation:
void ShellImpl::ConnectToApplication(const String& app_url,
InterfaceRequest<ServiceProvider> services,
ServiceProviderPtr exposed_services) {
GURL app_gurl(app_url);
if (!app_gurl.is_valid()) {
LOG(ERROR) << "Error: invalid URL: " << app_url;
return;
}
manager_->ConnectToApplication(app_gurl, identity_.url, services.Pass(),
exposed_services.Pass(), base::Closure());
}
void ShellImpl::OnConnectionError() {
manager_->OnShellImplError(this);
}
} // namespace shell
} // namespace mojo
|