| 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 "services/ui/demo/mus_demo.h" | 5 #include "services/ui/demo/mus_demo.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "base/time/time.h" | 8 #include "base/time/time.h" |
| 9 #include "services/service_manager/public/cpp/connector.h" | 9 #include "services/service_manager/public/cpp/connector.h" |
| 10 #include "services/ui/demo/bitmap_uploader.h" | 10 #include "services/ui/demo/bitmap_uploader.h" |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 canvas->drawRect(rect, paint); | 57 canvas->drawRect(rect, paint); |
| 58 } | 58 } |
| 59 | 59 |
| 60 } // namespace | 60 } // namespace |
| 61 | 61 |
| 62 MusDemo::MusDemo() {} | 62 MusDemo::MusDemo() {} |
| 63 | 63 |
| 64 MusDemo::~MusDemo() {} | 64 MusDemo::~MusDemo() {} |
| 65 | 65 |
| 66 void MusDemo::Start(service_manager::Connector* connector) { | 66 void MusDemo::OnStart(const service_manager::ServiceInfo& info) { |
| 67 gpu_service_ = GpuService::Create(connector); | 67 gpu_service_ = GpuService::Create(connector()); |
| 68 window_tree_client_ = base::MakeUnique<WindowTreeClient>(this, this); | 68 window_tree_client_ = base::MakeUnique<WindowTreeClient>(this, this); |
| 69 window_tree_client_->ConnectAsWindowManager(connector); | 69 window_tree_client_->ConnectAsWindowManager(connector()); |
| 70 } |
| 71 |
| 72 bool MusDemo::OnConnect(const service_manager::ServiceInfo& remote_info, |
| 73 service_manager::InterfaceRegistry* registry) { |
| 74 return true; |
| 70 } | 75 } |
| 71 | 76 |
| 72 void MusDemo::OnEmbed(Window* window) { | 77 void MusDemo::OnEmbed(Window* window) { |
| 73 // Not called for the WindowManager. | 78 // Not called for the WindowManager. |
| 74 NOTREACHED(); | 79 NOTREACHED(); |
| 75 } | 80 } |
| 76 | 81 |
| 77 void MusDemo::OnEmbedRootDestroyed(Window* root) { | 82 void MusDemo::OnEmbedRootDestroyed(Window* root) { |
| 78 // Not called for the WindowManager. | 83 // Not called for the WindowManager. |
| 79 NOTREACHED(); | 84 NOTREACHED(); |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 BitmapUploader::Format bitmap_format = BitmapUploader::BGRA; | 199 BitmapUploader::Format bitmap_format = BitmapUploader::BGRA; |
| 195 #endif | 200 #endif |
| 196 | 201 |
| 197 // Send frame to MUS via BitmapUploader. | 202 // Send frame to MUS via BitmapUploader. |
| 198 uploader_->SetBitmap(bounds.width(), bounds.height(), std::move(data), | 203 uploader_->SetBitmap(bounds.width(), bounds.height(), std::move(data), |
| 199 bitmap_format); | 204 bitmap_format); |
| 200 } | 205 } |
| 201 | 206 |
| 202 } // namespace demo | 207 } // namespace demo |
| 203 } // namespace ui | 208 } // namespace ui |
| OLD | NEW |