blob: 93e596316662043041c34d2ed9065c8b602aa046 [file] [log] [blame]
// 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 "base/macros.h"
#include "ui/gfx/client_native_pixmap_factory.h"
namespace ui {
namespace {
class StubClientNativePixmapFactory : public gfx::ClientNativePixmapFactory {
public:
StubClientNativePixmapFactory() {}
~StubClientNativePixmapFactory() override {}
// ClientNativePixmapFactory:
bool IsConfigurationSupported(gfx::BufferFormat format,
gfx::BufferUsage usage) const override {
return false;
}
std::unique_ptr<gfx::ClientNativePixmap> ImportFromHandle(
const gfx::NativePixmapHandle& handle,
const gfx::Size& size,
gfx::BufferUsage usage) override {
NOTREACHED();
return nullptr;
}
private:
DISALLOW_COPY_AND_ASSIGN(StubClientNativePixmapFactory);
};
} // namespace
gfx::ClientNativePixmapFactory* CreateStubClientNativePixmapFactory() {
return new StubClientNativePixmapFactory;
}
} // namespace ui