OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY
_IMPL_H_ | 5 #ifndef MEDIA_CAPTURE_VIDEO_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY
_IMPL_H_ | 6 #define MEDIA_CAPTURE_VIDEO_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_IMPL_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "content/common/content_export.h" | 10 #include "media/capture/capture_export.h" |
11 #include "media/capture/video/video_capture_buffer_tracker_factory.h" | 11 #include "media/capture/video/video_capture_buffer_tracker_factory.h" |
12 | 12 |
13 namespace content { | 13 namespace media { |
14 | 14 |
15 class CONTENT_EXPORT VideoCaptureBufferTrackerFactoryImpl | 15 class CAPTURE_EXPORT VideoCaptureBufferTrackerFactoryImpl |
16 : public media::VideoCaptureBufferTrackerFactory { | 16 : public VideoCaptureBufferTrackerFactory { |
17 public: | 17 public: |
18 std::unique_ptr<media::VideoCaptureBufferTracker> CreateTracker( | 18 std::unique_ptr<VideoCaptureBufferTracker> CreateTracker( |
19 media::VideoPixelStorage storage) override; | 19 VideoPixelStorage storage) override; |
20 }; | 20 }; |
21 | 21 |
22 } // namespace content | 22 } // namespace media |
23 | 23 |
24 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_VIDEO_CAPTURE_BUFFER_TRACKER_FACT
ORY_IMPL_H_ | 24 #endif // MEDIA_CAPTURE_VIDEO_VIDEO_CAPTURE_BUFFER_TRACKER_FACTORY_IMPL_H_ |
OLD | NEW |