| 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/service_manager/public/cpp/service_context.h" |
| 10 #include "services/ui/demo/bitmap_uploader.h" | 11 #include "services/ui/demo/bitmap_uploader.h" |
| 11 #include "services/ui/public/cpp/gpu_service.h" | 12 #include "services/ui/public/cpp/gpu_service.h" |
| 12 #include "services/ui/public/cpp/window.h" | 13 #include "services/ui/public/cpp/window.h" |
| 13 #include "services/ui/public/cpp/window_tree_client.h" | 14 #include "services/ui/public/cpp/window_tree_client.h" |
| 14 #include "third_party/skia/include/core/SkCanvas.h" | 15 #include "third_party/skia/include/core/SkCanvas.h" |
| 15 #include "third_party/skia/include/core/SkColor.h" | 16 #include "third_party/skia/include/core/SkColor.h" |
| 16 #include "third_party/skia/include/core/SkImageInfo.h" | 17 #include "third_party/skia/include/core/SkImageInfo.h" |
| 17 #include "third_party/skia/include/core/SkPaint.h" | 18 #include "third_party/skia/include/core/SkPaint.h" |
| 18 #include "third_party/skia/include/core/SkRect.h" | 19 #include "third_party/skia/include/core/SkRect.h" |
| 19 #include "ui/gfx/geometry/rect.h" | 20 #include "ui/gfx/geometry/rect.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 57 |
| 57 canvas->drawRect(rect, paint); | 58 canvas->drawRect(rect, paint); |
| 58 } | 59 } |
| 59 | 60 |
| 60 } // namespace | 61 } // namespace |
| 61 | 62 |
| 62 MusDemo::MusDemo() {} | 63 MusDemo::MusDemo() {} |
| 63 | 64 |
| 64 MusDemo::~MusDemo() {} | 65 MusDemo::~MusDemo() {} |
| 65 | 66 |
| 66 void MusDemo::OnStart(const service_manager::ServiceInfo& info) { | 67 void MusDemo::OnStart(service_manager::ServiceContext* context) { |
| 67 gpu_service_ = GpuService::Create(connector()); | 68 gpu_service_ = GpuService::Create(context->connector()); |
| 68 window_tree_client_ = base::MakeUnique<WindowTreeClient>(this, this); | 69 window_tree_client_ = base::MakeUnique<WindowTreeClient>(this, this); |
| 69 window_tree_client_->ConnectAsWindowManager(connector()); | 70 window_tree_client_->ConnectAsWindowManager(context->connector()); |
| 70 } | 71 } |
| 71 | 72 |
| 72 bool MusDemo::OnConnect(const service_manager::ServiceInfo& remote_info, | 73 bool MusDemo::OnConnect(const service_manager::ServiceInfo& remote_info, |
| 73 service_manager::InterfaceRegistry* registry) { | 74 service_manager::InterfaceRegistry* registry) { |
| 74 return true; | 75 return true; |
| 75 } | 76 } |
| 76 | 77 |
| 77 void MusDemo::OnEmbed(Window* window) { | 78 void MusDemo::OnEmbed(Window* window) { |
| 78 // Not called for the WindowManager. | 79 // Not called for the WindowManager. |
| 79 NOTREACHED(); | 80 NOTREACHED(); |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 BitmapUploader::Format bitmap_format = BitmapUploader::BGRA; | 200 BitmapUploader::Format bitmap_format = BitmapUploader::BGRA; |
| 200 #endif | 201 #endif |
| 201 | 202 |
| 202 // Send frame to MUS via BitmapUploader. | 203 // Send frame to MUS via BitmapUploader. |
| 203 uploader_->SetBitmap(bounds.width(), bounds.height(), std::move(data), | 204 uploader_->SetBitmap(bounds.width(), bounds.height(), std::move(data), |
| 204 bitmap_format); | 205 bitmap_format); |
| 205 } | 206 } |
| 206 | 207 |
| 207 } // namespace demo | 208 } // namespace demo |
| 208 } // namespace ui | 209 } // namespace ui |
| OLD | NEW |