1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/ozone/common/stub_client_native_pixmap_factory.h"
7 #include "base/file_descriptor_posix.h"
13 class StubClientNativePixmapFactory
: public ClientNativePixmapFactory
{
15 StubClientNativePixmapFactory() {}
16 ~StubClientNativePixmapFactory() override
{}
18 // ClientNativePixmapFactory:
19 std::vector
<Configuration
> GetSupportedConfigurations() const override
{
20 return std::vector
<Configuration
>();
22 scoped_ptr
<ClientNativePixmap
> ImportNativePixmap(
23 const base::FileDescriptor
& handle
,
24 const gfx::Size
& size
,
25 gfx::BufferFormat format
,
26 gfx::BufferUsage usage
) override
{
32 DISALLOW_COPY_AND_ASSIGN(StubClientNativePixmapFactory
);
37 ClientNativePixmapFactory
* CreateStubClientNativePixmapFactory() {
38 return new StubClientNativePixmapFactory
;