Add ICU message format support
[chromium-blink-merge.git] / ui / ozone / common / stub_client_native_pixmap_factory.cc
blob2b74cf81cce4733f873d9f1b959494fec3d884ae
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"
9 namespace ui {
11 namespace {
13 class StubClientNativePixmapFactory : public ClientNativePixmapFactory {
14 public:
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 {
27 NOTIMPLEMENTED();
28 return nullptr;
31 private:
32 DISALLOW_COPY_AND_ASSIGN(StubClientNativePixmapFactory);
35 } // namespace
37 ClientNativePixmapFactory* CreateStubClientNativePixmapFactory() {
38 return new StubClientNativePixmapFactory;
41 } // namespace ui