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