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

Unified Diff: content/browser/renderer_host/media/video_capture_manager.cc

Issue 7284037: Adding MediaStreamManager. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Added DeviceRequest dtor, needed for clang. Created 9 years, 5 months 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/media/video_capture_manager.cc
===================================================================
--- content/browser/renderer_host/media/video_capture_manager.cc (revision 91672)
+++ content/browser/renderer_host/media/video_capture_manager.cc (working copy)
@@ -16,13 +16,6 @@
// explicitly calling open device.
enum { kFirstSessionId = VideoCaptureManager::kStartOpenSessionId + 1 };
-static ::base::LazyInstance<VideoCaptureManager> g_video_capture_manager(
- base::LINKER_INITIALIZED);
-
-VideoCaptureManager* VideoCaptureManager::Get() {
- return g_video_capture_manager.Pointer();
-}
-
VideoCaptureManager::VideoCaptureManager()
: vc_device_thread_("VideoCaptureManagerThread"),
listener_(NULL),

Powered by Google App Engine
This is Rietveld 408576698