| OLD | NEW |
| 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 "ui/ozone/platform/drm/test/mock_drm_device.h" | 5 #include "ui/ozone/platform/drm/test/mock_drm_device.h" |
| 6 | 6 |
| 7 #include <xf86drm.h> | 7 #include <xf86drm.h> |
| 8 #include <xf86drmMode.h> | 8 #include <xf86drmMode.h> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 return true; | 212 return true; |
| 213 } | 213 } |
| 214 | 214 |
| 215 void MockDrmDevice::DestroyDumbBuffer(const SkImageInfo& info, | 215 void MockDrmDevice::DestroyDumbBuffer(const SkImageInfo& info, |
| 216 uint32_t handle, | 216 uint32_t handle, |
| 217 uint32_t stride, | 217 uint32_t stride, |
| 218 void* pixels) { | 218 void* pixels) { |
| 219 delete[] static_cast<char*>(pixels); | 219 delete[] static_cast<char*>(pixels); |
| 220 } | 220 } |
| 221 | 221 |
| 222 bool MockDrmDevice::CloseBufferHandle(uint32_t handle) { |
| 223 return true; |
| 224 } |
| 225 |
| 222 bool MockDrmDevice::CommitProperties(drmModePropertySet* properties, | 226 bool MockDrmDevice::CommitProperties(drmModePropertySet* properties, |
| 223 uint32_t flags, | 227 uint32_t flags, |
| 224 const PageFlipCallback& callback) { | 228 const PageFlipCallback& callback) { |
| 225 return false; | 229 return false; |
| 226 } | 230 } |
| 227 | 231 |
| 228 void MockDrmDevice::RunCallbacks() { | 232 void MockDrmDevice::RunCallbacks() { |
| 229 while (!callbacks_.empty()) { | 233 while (!callbacks_.empty()) { |
| 230 PageFlipCallback callback = callbacks_.front(); | 234 PageFlipCallback callback = callbacks_.front(); |
| 231 callbacks_.pop(); | 235 callbacks_.pop(); |
| 232 callback.Run(0, 0, 0); | 236 callback.Run(0, 0, 0); |
| 233 } | 237 } |
| 234 } | 238 } |
| 235 | 239 |
| 236 } // namespace ui | 240 } // namespace ui |
| OLD | NEW |