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

Side by Side Diff: media/capture/video/video_capture_buffer_tracker_factory.h

Issue 2415703002: Move files video_capture*.* from media/base to media/capture (Closed)
Patch Set: rebase Created 4 years, 1 month 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
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 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 #ifndef MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_ 5 #ifndef MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_
6 #define MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_ 6 #define MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "media/base/video_capture_types.h"
11 #include "media/capture/capture_export.h" 10 #include "media/capture/capture_export.h"
11 #include "media/capture/video_capture_types.h"
12 12
13 namespace media { 13 namespace media {
14 14
15 class VideoCaptureBufferTracker; 15 class VideoCaptureBufferTracker;
16 16
17 class CAPTURE_EXPORT VideoCaptureBufferTrackerFactory { 17 class CAPTURE_EXPORT VideoCaptureBufferTrackerFactory {
18 public: 18 public:
19 virtual ~VideoCaptureBufferTrackerFactory() {} 19 virtual ~VideoCaptureBufferTrackerFactory() {}
20 virtual std::unique_ptr<VideoCaptureBufferTracker> CreateTracker( 20 virtual std::unique_ptr<VideoCaptureBufferTracker> CreateTracker(
21 VideoPixelStorage storage_type) = 0; 21 VideoPixelStorage storage_type) = 0;
22 }; 22 };
23 23
24 } // namespace media 24 } // namespace media
25 25
26 #endif // MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_ 26 #endif // MEDIA_VIDEO_CAPTURE_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_H_
OLDNEW
« no previous file with comments | « media/capture/video/video_capture_buffer_tracker.h ('k') | media/capture/video/video_capture_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698