Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: mojo/shell/view_manager_loader.cc

Issue 267293004: Wires up view manager to an actual display (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « mojo/shell/view_manager_loader.h ('k') | ui/aura/window_tree_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #include "mojo/shell/view_manager_loader.h"
6
7 #include "mojo/public/cpp/shell/application.h"
8 #include "mojo/services/view_manager/root_node_manager.h"
9 #include "mojo/services/view_manager/view_manager_connection.h"
10
11 namespace mojo {
12 namespace shell {
13
14 ViewManagerLoader::ViewManagerLoader() {
15 }
16
17 ViewManagerLoader::~ViewManagerLoader() {
18 }
19
20 void ViewManagerLoader::LoadService(ServiceManager* manager,
21 const GURL& url,
22 ScopedShellHandle shell_handle) {
23 scoped_ptr<Application> app(new Application(shell_handle.Pass()));
24 if (!root_node_manager_.get()) {
25 root_node_manager_.reset(
26 new services::view_manager::RootNodeManager(app->shell()));
27 }
28 app->AddServiceConnector(
29 new ServiceConnector<services::view_manager::ViewManagerConnection,
30 services::view_manager::RootNodeManager>(
31 root_node_manager_.get()));
32 apps_.push_back(app.release());
33 }
34
35 void ViewManagerLoader::OnServiceError(ServiceManager* manager,
36 const GURL& url) {
37 }
38
39 } // namespace shell
40 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/shell/view_manager_loader.h ('k') | ui/aura/window_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698