OLD | NEW |
---|---|
(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_TRACKER_FACTORY _H_ | |
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY _H_ | |
7 | |
8 #include <memory> | |
9 | |
10 #include "content/browser/renderer_host/media/video_capture_buffer_tracker.h" | |
11 | |
12 namespace content { | |
13 | |
14 class VideoCaptureBufferTrackerFactory { | |
15 public: | |
16 static std::unique_ptr<VideoCaptureBufferTracker> CreateTracker( | |
17 media::VideoPixelStorage storage); | |
mcasas
2016/09/20 00:51:08
If there is just this method you can consider pegg
chfremer
2016/09/20 18:43:10
I agree, and it actually used to be part of the Tr
| |
18 }; | |
19 | |
20 } // namespace content | |
21 | |
22 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_BUFFER_TRACKER_FACT ORY_H_ | |
OLD | NEW |