| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 // Draw initial frame and start the timer to regularly draw frames. | 127 // Draw initial frame and start the timer to regularly draw frames. |
| 128 DrawFrame(); | 128 DrawFrame(); |
| 129 timer_.Start(FROM_HERE, base::TimeDelta::FromMilliseconds(kFrameDelay), | 129 timer_.Start(FROM_HERE, base::TimeDelta::FromMilliseconds(kFrameDelay), |
| 130 base::Bind(&MusDemo::DrawFrame, base::Unretained(this))); | 130 base::Bind(&MusDemo::DrawFrame, base::Unretained(this))); |
| 131 } | 131 } |
| 132 | 132 |
| 133 void MusDemo::OnWmDisplayRemoved(ui::Window* window) { | 133 void MusDemo::OnWmDisplayRemoved(ui::Window* window) { |
| 134 window->Destroy(); | 134 window->Destroy(); |
| 135 } | 135 } |
| 136 | 136 |
| 137 void MusDemo::OnWmDisplayModified(const display::Display& display) {} |
| 138 |
| 137 void MusDemo::OnWmPerformMoveLoop(Window* window, | 139 void MusDemo::OnWmPerformMoveLoop(Window* window, |
| 138 mojom::MoveLoopSource source, | 140 mojom::MoveLoopSource source, |
| 139 const gfx::Point& cursor_location, | 141 const gfx::Point& cursor_location, |
| 140 const base::Callback<void(bool)>& on_done) { | 142 const base::Callback<void(bool)>& on_done) { |
| 141 // Don't care | 143 // Don't care |
| 142 } | 144 } |
| 143 | 145 |
| 144 void MusDemo::OnWmCancelMoveLoop(Window* window) {} | 146 void MusDemo::OnWmCancelMoveLoop(Window* window) {} |
| 145 | 147 |
| 146 void MusDemo::AllocBitmap() { | 148 void MusDemo::AllocBitmap() { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 new std::vector<unsigned char>(addr, addr + bytes)); | 186 new std::vector<unsigned char>(addr, addr + bytes)); |
| 185 bitmap_.unlockPixels(); | 187 bitmap_.unlockPixels(); |
| 186 | 188 |
| 187 // Send frame to MUS via BitmapUploader. | 189 // Send frame to MUS via BitmapUploader. |
| 188 uploader_->SetBitmap(bounds.width(), bounds.height(), std::move(data), | 190 uploader_->SetBitmap(bounds.width(), bounds.height(), std::move(data), |
| 189 BitmapUploader::BGRA); | 191 BitmapUploader::BGRA); |
| 190 } | 192 } |
| 191 | 193 |
| 192 } // namespace demo | 194 } // namespace demo |
| 193 } // namespace ui | 195 } // namespace ui |
| OLD | NEW |