OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "mash/browser/browser.h" | 5 #include "mash/browser/browser.h" |
6 | 6 |
7 #include "base/macros.h" | 7 #include "base/macros.h" |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
12 #include "base/strings/utf_string_conversions.h" | 12 #include "base/strings/utf_string_conversions.h" |
13 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
14 #include "components/mus/public/cpp/window.h" | 14 #include "components/mus/public/cpp/window.h" |
15 #include "components/mus/public/cpp/window_tree_connection.h" | 15 #include "components/mus/public/cpp/window_tree_client.h" |
16 #include "mash/public/interfaces/launchable.mojom.h" | 16 #include "mash/public/interfaces/launchable.mojom.h" |
17 #include "mojo/public/c/system/main.h" | 17 #include "mojo/public/c/system/main.h" |
18 #include "services/navigation/public/interfaces/view.mojom.h" | 18 #include "services/navigation/public/interfaces/view.mojom.h" |
19 #include "services/shell/public/cpp/application_runner.h" | 19 #include "services/shell/public/cpp/application_runner.h" |
20 #include "services/shell/public/cpp/connector.h" | 20 #include "services/shell/public/cpp/connector.h" |
21 #include "services/shell/public/cpp/shell_client.h" | 21 #include "services/shell/public/cpp/shell_client.h" |
22 #include "services/tracing/public/cpp/tracing_impl.h" | 22 #include "services/tracing/public/cpp/tracing_impl.h" |
23 #include "ui/aura/mus/mus_util.h" | 23 #include "ui/aura/mus/mus_util.h" |
24 #include "ui/gfx/canvas.h" | 24 #include "ui/gfx/canvas.h" |
25 #include "ui/gfx/paint_throbber.h" | 25 #include "ui/gfx/paint_throbber.h" |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 int width = local_bounds.width(); | 222 int width = local_bounds.width(); |
223 int height = local_bounds.height() - y; | 223 int height = local_bounds.height() - y; |
224 content_area_->SetBounds( | 224 content_area_->SetBounds( |
225 gfx::Rect(offset.x(), offset.y(), width, height)); | 225 gfx::Rect(offset.x(), offset.y(), width, height)); |
226 } | 226 } |
227 } | 227 } |
228 void ViewHierarchyChanged( | 228 void ViewHierarchyChanged( |
229 const views::View::ViewHierarchyChangedDetails& details) override { | 229 const views::View::ViewHierarchyChangedDetails& details) override { |
230 if (details.is_add && GetWidget() && !content_area_) { | 230 if (details.is_add && GetWidget() && !content_area_) { |
231 mus::Window* window = aura::GetMusWindow(GetWidget()->GetNativeWindow()); | 231 mus::Window* window = aura::GetMusWindow(GetWidget()->GetNativeWindow()); |
232 content_area_ = window->connection()->NewWindow(nullptr); | 232 content_area_ = window->window_tree()->NewWindow(nullptr); |
233 window->AddChild(content_area_); | 233 window->AddChild(content_area_); |
234 | 234 |
235 mus::mojom::WindowTreeClientPtr client; | 235 mus::mojom::WindowTreeClientPtr client; |
236 view_->GetWindowTreeClient(GetProxy(&client)); | 236 view_->GetWindowTreeClient(GetProxy(&client)); |
237 content_area_->Embed(std::move(client)); | 237 content_area_->Embed(std::move(client)); |
238 } | 238 } |
239 } | 239 } |
240 | 240 |
241 // Overridden from views::TextFieldController: | 241 // Overridden from views::TextFieldController: |
242 bool HandleKeyEvent(views::Textfield* sender, | 242 bool HandleKeyEvent(views::Textfield* sender, |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 AddWindow(window); | 366 AddWindow(window); |
367 } | 367 } |
368 | 368 |
369 void Browser::Create(shell::Connection* connection, | 369 void Browser::Create(shell::Connection* connection, |
370 mojom::LaunchableRequest request) { | 370 mojom::LaunchableRequest request) { |
371 bindings_.AddBinding(this, std::move(request)); | 371 bindings_.AddBinding(this, std::move(request)); |
372 } | 372 } |
373 | 373 |
374 } // namespace browser | 374 } // namespace browser |
375 } // namespace mash | 375 } // namespace mash |
OLD | NEW |