| Index: media/capture/video/video_capture_buffer_tracker_factory.h
|
| diff --git a/media/capture/video/video_capture_buffer_tracker_factory.h b/media/capture/video/video_capture_buffer_tracker_factory.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2828a5b140d1e826aceb9bd6cef700428dbebd1e
|
| --- /dev/null
|
| +++ b/media/capture/video/video_capture_buffer_tracker_factory.h
|
| @@ -0,0 +1,26 @@
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_
|
| +#define MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_
|
| +
|
| +#include <memory>
|
| +
|
| +#include "media/base/video_capture_types.h"
|
| +#include "media/capture/capture_export.h"
|
| +
|
| +namespace media {
|
| +
|
| +class VideoCaptureBufferTracker;
|
| +
|
| +class CAPTURE_EXPORT VideoCaptureBufferTrackerFactory {
|
| + public:
|
| + virtual ~VideoCaptureBufferTrackerFactory() {}
|
| + virtual std::unique_ptr<VideoCaptureBufferTracker> CreateTracker(
|
| + VideoPixelStorage storage_type) = 0;
|
| +};
|
| +
|
| +} // namespace media
|
| +
|
| +#endif // MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_
|
|
|