Index: ui/ozone/platform/drm/common/client_pixmap_manager_drm.cc |
diff --git a/ui/ozone/platform/drm/common/client_pixmap_manager_drm.cc b/ui/ozone/platform/drm/common/client_pixmap_manager_drm.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b99853822290e78a2714bafde590d9173056c0f0 |
--- /dev/null |
+++ b/ui/ozone/platform/drm/common/client_pixmap_manager_drm.cc |
@@ -0,0 +1,19 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "ui/ozone/platform/drm/common/client_pixmap_manager_drm.h" |
+ |
+#include "ui/ozone/common/stub_client_pixmap_manager.h" |
+ |
+namespace ui { |
+ |
+ClientPixmapManager* CreateClientPixmapManagerDri() { |
+ return CreateStubClientPixmapManager(); |
+} |
+ |
+ClientPixmapManager* CreateClientPixmapManagerDrm() { |
+ return CreateStubClientPixmapManager(); |
+} |
+ |
+} // namespace ui |