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

Side by Side Diff: content/renderer/media/video_capture_impl_manager.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_
6 #define CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_ 6 #define CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
15 #include "base/single_thread_task_runner.h" 15 #include "base/single_thread_task_runner.h"
16 #include "base/synchronization/lock.h" 16 #include "base/synchronization/lock.h"
17 #include "base/threading/thread_checker.h" 17 #include "base/threading/thread_checker.h"
18 #include "content/common/content_export.h" 18 #include "content/common/content_export.h"
19 #include "content/common/media/video_capture.h" 19 #include "content/common/media/video_capture.h"
20 #include "content/public/renderer/media_stream_video_sink.h" 20 #include "content/public/renderer/media_stream_video_sink.h"
21 #include "media/base/video_capture_types.h" 21 #include "media/capture/video_capture_types.h"
22 22
23 namespace content { 23 namespace content {
24 24
25 class VideoCaptureImpl; 25 class VideoCaptureImpl;
26 26
27 // TODO(hclam): This class should be renamed to VideoCaptureService. 27 // TODO(hclam): This class should be renamed to VideoCaptureService.
28 28
29 // This class provides access to a video capture device in the browser 29 // This class provides access to a video capture device in the browser
30 // process through IPC. The main function is to deliver video frames 30 // process through IPC. The main function is to deliver video frames
31 // to a client. 31 // to a client.
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 // Bound to the render thread. 125 // Bound to the render thread.
126 // NOTE: Weak pointers must be invalidated before all other member variables. 126 // NOTE: Weak pointers must be invalidated before all other member variables.
127 base::WeakPtrFactory<VideoCaptureImplManager> weak_factory_; 127 base::WeakPtrFactory<VideoCaptureImplManager> weak_factory_;
128 128
129 DISALLOW_COPY_AND_ASSIGN(VideoCaptureImplManager); 129 DISALLOW_COPY_AND_ASSIGN(VideoCaptureImplManager);
130 }; 130 };
131 131
132 } // namespace content 132 } // namespace content
133 133
134 #endif // CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_ 134 #endif // CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_MANAGER_H_
OLDNEW
« no previous file with comments | « content/renderer/media/video_capture_impl.h ('k') | content/renderer/media/video_track_to_pepper_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698