| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013 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 MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_ |
| 6 #define MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_ |
| 7 |
| 8 #include <memory> |
| 9 |
| 10 #include "media/base/video_capture_types.h" |
| 11 #include "media/capture/capture_export.h" |
| 12 |
| 13 namespace media { |
| 14 |
| 15 class VideoCaptureBufferTracker; |
| 16 |
| 17 class CAPTURE_EXPORT VideoCaptureBufferTrackerFactory { |
| 18 public: |
| 19 virtual ~VideoCaptureBufferTrackerFactory() {} |
| 20 virtual std::unique_ptr<VideoCaptureBufferTracker> CreateTracker( |
| 21 VideoPixelStorage storage_type) = 0; |
| 22 }; |
| 23 |
| 24 } // namespace media |
| 25 |
| 26 #endif // MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_ |
| OLD | NEW |