1 // Copyright 2014 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.
5 #include "mojo/shell/view_manager_loader.h"
7 #include "mojo/public/cpp/application/application_connection.h"
8 #include "mojo/public/cpp/application/application_impl.h"
9 #include "mojo/services/view_manager/view_manager_init_service_impl.h"
14 ViewManagerLoader::ViewManagerLoader() {
17 ViewManagerLoader::~ViewManagerLoader() {
20 void ViewManagerLoader::LoadService(
21 ServiceManager
* manager
,
23 ScopedMessagePipeHandle shell_handle
) {
24 // TODO(sky): this needs some sort of authentication as well as making sure
25 // we only ever have one active at a time.
26 scoped_ptr
<ApplicationImpl
> app(
27 new ApplicationImpl(this, shell_handle
.Pass()));
28 apps_
.push_back(app
.release());
31 void ViewManagerLoader::OnServiceError(ServiceManager
* manager
,
35 bool ViewManagerLoader::ConfigureIncomingConnection(
36 mojo::ApplicationConnection
* connection
) {
37 connection
->AddService
<view_manager::service::ViewManagerInitServiceImpl
>();