| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/ozone/common/stub_client_native_pixmap_manager.h" | 5 #include "ui/ozone/common/stub_client_native_pixmap_manager.h" |
| 6 | 6 |
| 7 #include "base/file_descriptor_posix.h" | 7 #include "base/file_descriptor_posix.h" |
| 8 | 8 |
| 9 namespace ui { | 9 namespace ui { |
| 10 | 10 |
| 11 namespace { | 11 namespace { |
| 12 | 12 |
| 13 class StubClientNativePixmapManager : public ClientNativePixmapManager { | 13 class StubClientNativePixmapManager : public ClientNativePixmapManager { |
| 14 public: | 14 public: |
| 15 StubClientNativePixmapManager() {} | 15 StubClientNativePixmapManager() {} |
| 16 ~StubClientNativePixmapManager() override {} | 16 ~StubClientNativePixmapManager() override { |
| 17 if (virtual_device_.auto_close) { |
| 18 base::ScopedFD closing_fd(virtual_device_.fd); |
| 19 } |
| 20 } |
| 17 | 21 |
| 18 // ClientNativePixmapManager: | 22 // ClientNativePixmapManager: |
| 19 std::vector<Configuration> GetSupportedConfigurations() const override { | 23 std::vector<Configuration> GetSupportedConfigurations() const override { |
| 20 return std::vector<Configuration>(); | 24 return std::vector<Configuration>(); |
| 21 } | 25 } |
| 22 scoped_ptr<ClientNativePixmap> ImportClientNativePixmap( | 26 scoped_ptr<ClientNativePixmap> ImportClientNativePixmap( |
| 23 base::FileDescriptor handle, | 27 base::FileDescriptor handle, |
| 24 gfx::Size size, | 28 gfx::Size size, |
| 25 NativePixmapFormat format, | 29 NativePixmapFormat format, |
| 26 NativePixmapUsage usage) override { | 30 NativePixmapUsage usage) override { |
| 27 NOTIMPLEMENTED(); | 31 NOTIMPLEMENTED(); |
| 28 return nullptr; | 32 return nullptr; |
| 29 } | 33 } |
| 30 | 34 |
| 31 private: | 35 private: |
| 36 void Initialize(const base::FileDescriptor& virtual_device) override { |
| 37 DCHECK_EQ(virtual_device_.fd, -1); |
| 38 if (virtual_device.fd >= 0) |
| 39 virtual_device_ = virtual_device; |
| 40 } |
| 41 |
| 42 base::FileDescriptor virtual_device_; |
| 43 |
| 32 DISALLOW_COPY_AND_ASSIGN(StubClientNativePixmapManager); | 44 DISALLOW_COPY_AND_ASSIGN(StubClientNativePixmapManager); |
| 33 }; | 45 }; |
| 34 | 46 |
| 35 } // namespace | 47 } // namespace |
| 36 | 48 |
| 37 ClientNativePixmapManager* CreateStubClientNativePixmapManager() { | 49 ClientNativePixmapManager* CreateStubClientNativePixmapManager() { |
| 38 return new StubClientNativePixmapManager; | 50 return new StubClientNativePixmapManager; |
| 39 } | 51 } |
| 40 | 52 |
| 41 } // namespace ui | 53 } // namespace ui |
| OLD | NEW |