Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1153)

Side by Side Diff: content/browser/renderer_host/media/video_capture_buffer_handle.h

Issue 2343423003: Extract nested and private classes from VideoCaptureBufferPool (Closed)
Patch Set: Merge branch 'master' into BufferPoolRefactor Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 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.
4
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_BUFFER_HANDLE_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_BUFFER_HANDLE_H_
7
8 #include "base/files/file.h"
9 #include "ui/gfx/geometry/size.h"
10 #include "ui/gfx/gpu_memory_buffer.h"
11
12 namespace content {
13
14 // Abstraction of a pool's buffer data buffer and size for clients.
15 class VideoCaptureBufferHandle {
16 public:
17 virtual ~VideoCaptureBufferHandle() {}
18 virtual gfx::Size dimensions() const = 0;
19 virtual size_t mapped_size() const = 0;
20 virtual void* data(int plane) = 0;
21 virtual ClientBuffer AsClientBuffer(int plane) = 0;
22 #if defined(OS_POSIX) && !defined(OS_MACOSX)
23 virtual base::FileDescriptor AsPlatformFile() = 0;
24 #endif
25 };
26
27 } // namespace content
28
29 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_BUFFER_HANDLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698