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

Side by Side Diff: content/renderer/media/video_capture_impl_manager.cc

Issue 7062011: fix clang (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/media/video_capture_impl_manager.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "content/renderer/media/video_capture_impl_manager.h" 5 #include "content/renderer/media/video_capture_impl_manager.h"
6 6
7 #include "base/memory/singleton.h" 7 #include "base/memory/singleton.h"
8 #include "content/common/child_process.h" 8 #include "content/common/child_process.h"
9 #include "content/common/child_thread.h" 9 #include "content/common/child_thread.h"
10 #include "content/common/video_capture_messages.h" 10 #include "content/common/video_capture_messages.h"
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 } 106 }
107 107
108 VideoCaptureImplManager::Device::Device() : vc(NULL) {} 108 VideoCaptureImplManager::Device::Device() : vc(NULL) {}
109 109
110 VideoCaptureImplManager::Device::Device( 110 VideoCaptureImplManager::Device::Device(
111 VideoCaptureImpl* device, 111 VideoCaptureImpl* device,
112 media::VideoCapture::EventHandler* handler) 112 media::VideoCapture::EventHandler* handler)
113 : vc(device) { 113 : vc(device) {
114 clients.push_front(handler); 114 clients.push_front(handler);
115 } 115 }
116
117 VideoCaptureImplManager::Device::~Device() {}
118
OLDNEW
« no previous file with comments | « content/renderer/media/video_capture_impl_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698