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

Side by Side Diff: mojo/services/view_manager/root_view_manager.cc

Issue 298653010: Change Shell / ShellClient to ServiceProvider (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Support content Mojo stuff 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "mojo/services/view_manager/root_view_manager.h" 5 #include "mojo/services/view_manager/root_view_manager.h"
6 6
7 #include "base/auto_reset.h" 7 #include "base/auto_reset.h"
8 #include "mojo/aura/screen_mojo.h" 8 #include "mojo/aura/screen_mojo.h"
9 #include "mojo/aura/window_tree_host_mojo.h" 9 #include "mojo/aura/window_tree_host_mojo.h"
10 #include "mojo/public/cpp/shell/connect.h" 10 #include "mojo/public/cpp/application/connect.h"
11 #include "mojo/public/interfaces/shell/shell.mojom.h" 11 #include "mojo/public/interfaces/service_provider/service_provider.mojom.h"
12 #include "mojo/services/view_manager/root_node_manager.h" 12 #include "mojo/services/view_manager/root_node_manager.h"
13 #include "ui/aura/client/default_capture_client.h" 13 #include "ui/aura/client/default_capture_client.h"
14 #include "ui/aura/client/window_tree_client.h" 14 #include "ui/aura/client/window_tree_client.h"
15 #include "ui/aura/window.h" 15 #include "ui/aura/window.h"
16 16
17 namespace mojo { 17 namespace mojo {
18 namespace view_manager { 18 namespace view_manager {
19 namespace service { 19 namespace service {
20 20
21 class WindowTreeClientImpl : public aura::client::WindowTreeClient { 21 class WindowTreeClientImpl : public aura::client::WindowTreeClient {
(...skipping 18 matching lines...) Expand all
40 } 40 }
41 41
42 private: 42 private:
43 aura::Window* window_; 43 aura::Window* window_;
44 44
45 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_; 45 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_;
46 46
47 DISALLOW_COPY_AND_ASSIGN(WindowTreeClientImpl); 47 DISALLOW_COPY_AND_ASSIGN(WindowTreeClientImpl);
48 }; 48 };
49 49
50 RootViewManager::RootViewManager(Shell* shell, RootNodeManager* root_node) 50 RootViewManager::RootViewManager(ServiceProvider* service_provider,
51 : shell_(shell), 51 RootNodeManager* root_node)
52 : service_provider_(service_provider),
52 root_node_manager_(root_node), 53 root_node_manager_(root_node),
53 in_setup_(false) { 54 in_setup_(false) {
54 screen_.reset(ScreenMojo::Create()); 55 screen_.reset(ScreenMojo::Create());
55 gfx::Screen::SetScreenInstance(gfx::SCREEN_TYPE_NATIVE, screen_.get()); 56 gfx::Screen::SetScreenInstance(gfx::SCREEN_TYPE_NATIVE, screen_.get());
56 NativeViewportPtr viewport; 57 NativeViewportPtr viewport;
57 ConnectTo(shell, "mojo:mojo_native_viewport_service", &viewport); 58 ConnectToService(service_provider,
59 "mojo:mojo_native_viewport_service",
60 &viewport);
58 window_tree_host_.reset(new WindowTreeHostMojo( 61 window_tree_host_.reset(new WindowTreeHostMojo(
59 viewport.Pass(), 62 viewport.Pass(),
60 gfx::Rect(800, 600), 63 gfx::Rect(800, 600),
61 base::Bind(&RootViewManager::OnCompositorCreated, 64 base::Bind(&RootViewManager::OnCompositorCreated,
62 base::Unretained(this)))); 65 base::Unretained(this))));
63 } 66 }
64 67
65 RootViewManager::~RootViewManager() { 68 RootViewManager::~RootViewManager() {
66 window_tree_client_.reset(); 69 window_tree_client_.reset();
67 window_tree_host_.reset(); 70 window_tree_host_.reset();
(...skipping 11 matching lines...) Expand all
79 82
80 window_tree_client_.reset( 83 window_tree_client_.reset(
81 new WindowTreeClientImpl(window_tree_host_->window())); 84 new WindowTreeClientImpl(window_tree_host_->window()));
82 85
83 window_tree_host_->Show(); 86 window_tree_host_->Show();
84 } 87 }
85 88
86 } // namespace service 89 } // namespace service
87 } // namespace view_manager 90 } // namespace view_manager
88 } // namespace mojo 91 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698