| 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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 return true; | 207 return true; |
| 208 } | 208 } |
| 209 | 209 |
| 210 void MockDrmDevice::DestroyDumbBuffer(const SkImageInfo& info, | 210 void MockDrmDevice::DestroyDumbBuffer(const SkImageInfo& info, |
| 211 uint32_t handle, | 211 uint32_t handle, |
| 212 uint32_t stride, | 212 uint32_t stride, |
| 213 void* pixels) { | 213 void* pixels) { |
| 214 delete[] static_cast<char*>(pixels); | 214 delete[] static_cast<char*>(pixels); |
| 215 } | 215 } |
| 216 | 216 |
| 217 bool MockDrmDevice::CommitProperties(drmModePropertySet* properties, |
| 218 uint32_t flags, |
| 219 void* user_ptr) { |
| 220 return false; |
| 221 } |
| 222 |
| 217 void MockDrmDevice::RunCallbacks() { | 223 void MockDrmDevice::RunCallbacks() { |
| 218 while (!callbacks_.empty()) { | 224 while (!callbacks_.empty()) { |
| 219 PageFlipCallback callback = callbacks_.front(); | 225 PageFlipCallback callback = callbacks_.front(); |
| 220 callbacks_.pop(); | 226 callbacks_.pop(); |
| 221 callback.Run(0, 0, 0); | 227 callback.Run(0, 0, 0); |
| 222 } | 228 } |
| 223 } | 229 } |
| 224 | 230 |
| 225 } // namespace ui | 231 } // namespace ui |
| OLD | NEW |