Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: ui/ozone/platform/drm/test/mock_drm_device.cc

Issue 1100803004: ozone: Add ability to set clinet capabilities which we will need for atomic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 bool MockDrmDevice::CloseBufferHandle(uint32_t handle) { 222 bool MockDrmDevice::CloseBufferHandle(uint32_t handle) {
223 return true; 223 return true;
224 } 224 }
225 225
226 bool MockDrmDevice::CommitProperties(drmModePropertySet* properties, 226 bool MockDrmDevice::CommitProperties(drmModePropertySet* properties,
227 uint32_t flags, 227 uint32_t flags,
228 const PageFlipCallback& callback) { 228 const PageFlipCallback& callback) {
229 return false; 229 return false;
230 } 230 }
231 231
232 bool MockDrmDevice::SetCapability(uint64_t capability, uint64_t value) {
233 return false;
234 }
235
232 void MockDrmDevice::RunCallbacks() { 236 void MockDrmDevice::RunCallbacks() {
233 while (!callbacks_.empty()) { 237 while (!callbacks_.empty()) {
234 PageFlipCallback callback = callbacks_.front(); 238 PageFlipCallback callback = callbacks_.front();
235 callbacks_.pop(); 239 callbacks_.pop();
236 callback.Run(0, 0, 0); 240 callback.Run(0, 0, 0);
237 } 241 }
238 } 242 }
239 243
240 } // namespace ui 244 } // namespace ui
OLDNEW
« ui/ozone/platform/drm/gpu/drm_device.cc ('K') | « ui/ozone/platform/drm/test/mock_drm_device.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698