| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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, | 217 bool MockDrmDevice::CommitProperties(drmModePropertySet* properties, |
| 218 uint32_t flags, | 218 uint32_t flags, |
| 219 const PageFlipCallback& callback) { | 219 const PageFlipCallback& callback) { |
| 220 return false; | 220 return false; |
| 221 } | 221 } |
| 222 | 222 |
| 223 bool MockDrmDevice::SetGammaRamp(uint32_t crtc_id, |
| 224 uint32_t size, |
| 225 uint16_t* r, |
| 226 uint16_t* g, |
| 227 uint16_t* b) { |
| 228 return true; |
| 229 } |
| 230 |
| 223 void MockDrmDevice::RunCallbacks() { | 231 void MockDrmDevice::RunCallbacks() { |
| 224 while (!callbacks_.empty()) { | 232 while (!callbacks_.empty()) { |
| 225 PageFlipCallback callback = callbacks_.front(); | 233 PageFlipCallback callback = callbacks_.front(); |
| 226 callbacks_.pop(); | 234 callbacks_.pop(); |
| 227 callback.Run(0, 0, 0); | 235 callback.Run(0, 0, 0); |
| 228 } | 236 } |
| 229 } | 237 } |
| 230 | 238 |
| 231 } // namespace ui | 239 } // namespace ui |
| OLD | NEW |