| 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 "content/browser/gpu/browser_native_pixmap_manager_ozone.h" | 5 #include "content/browser/gpu/browser_native_pixmap_manager_ozone.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "base/posix/eintr_wrapper.h" | 8 #include "base/posix/eintr_wrapper.h" |
| 9 #include "content/common/gpu/native_pixmap_manager_ozone_messages.h" | 9 #include "content/common/gpu/native_pixmap_manager_ozone_messages.h" |
| 10 #include "content/public/browser/browser_message_filter.h" | 10 #include "content/public/browser/browser_message_filter.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 callback.Run(base::FileDescriptor()); | 101 callback.Run(base::FileDescriptor()); |
| 102 return; | 102 return; |
| 103 } | 103 } |
| 104 callback.Run(base::FileDescriptor(duped_handle, true)); | 104 callback.Run(base::FileDescriptor(duped_handle, true)); |
| 105 } | 105 } |
| 106 | 106 |
| 107 BrowserMessageFilter* BrowserNativePixmapManager::CreateMessageFilter() { | 107 BrowserMessageFilter* BrowserNativePixmapManager::CreateMessageFilter() { |
| 108 return new BrowserNativePixmapManagerMessageFilter(this); | 108 return new BrowserNativePixmapManagerMessageFilter(this); |
| 109 } | 109 } |
| 110 | 110 |
| 111 scoped_refptr<ui::NativePixmap> |
| 112 BrowserNativePixmapManager::CreateFromFileDescriptor( |
| 113 base::FileDescriptor handle, |
| 114 gfx::Size size, |
| 115 ui::SurfaceFactoryOzone::BufferFormat format, |
| 116 ui::SurfaceFactoryOzone::BufferUsage usage) { |
| 117 return pixmap_manager_->CreateFromFileDescriptor(handle, size, format, usage); |
| 118 } |
| 119 |
| 111 } // namespace content | 120 } // namespace content |
| OLD | NEW |