Commit b12f6391 authored by wjia@google.com's avatar wjia@google.com

fix clang

BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7062011

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86761 0039d316-1c4b-4281-b951-d872f2087c98
parent bb724614
...@@ -113,3 +113,6 @@ VideoCaptureImplManager::Device::Device( ...@@ -113,3 +113,6 @@ VideoCaptureImplManager::Device::Device(
: vc(device) { : vc(device) {
clients.push_front(handler); clients.push_front(handler);
} }
VideoCaptureImplManager::Device::~Device() {}
...@@ -46,6 +46,7 @@ class VideoCaptureImplManager { ...@@ -46,6 +46,7 @@ class VideoCaptureImplManager {
Device(); Device();
Device(VideoCaptureImpl* device, Device(VideoCaptureImpl* device,
media::VideoCapture::EventHandler* handler); media::VideoCapture::EventHandler* handler);
~Device();
VideoCaptureImpl* vc; VideoCaptureImpl* vc;
std::list<media::VideoCapture::EventHandler*> clients; std::list<media::VideoCapture::EventHandler*> clients;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment