| Index: content/browser/media/capture/desktop_capture_device_aura.cc
|
| diff --git a/content/browser/media/capture/desktop_capture_device_aura.cc b/content/browser/media/capture/desktop_capture_device_aura.cc
|
| index 432a1854019aab49d9876a3fe646b0bb31fe9ff5..7285d44f7cabfedf7770029da631f241744acbb7 100644
|
| --- a/content/browser/media/capture/desktop_capture_device_aura.cc
|
| +++ b/content/browser/media/capture/desktop_capture_device_aura.cc
|
| @@ -305,14 +305,9 @@ void CopyOutputFinishedForVideo(
|
| }
|
|
|
| void RunSingleReleaseCallback(scoped_ptr<cc::SingleReleaseCallback> cb,
|
| - const std::vector<uint32>& sync_points) {
|
| + uint32 sync_point) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| - GLHelper* gl_helper = ImageTransportFactory::GetInstance()->GetGLHelper();
|
| - DCHECK(gl_helper);
|
| - for (unsigned i = 0; i < sync_points.size(); i++)
|
| - gl_helper->WaitSyncPoint(sync_points[i]);
|
| - uint32 new_sync_point = gl_helper->InsertSyncPoint();
|
| - cb->Run(new_sync_point, false);
|
| + cb->Run(sync_point, false);
|
| }
|
|
|
| void DesktopVideoCaptureMachine::DidCopyOutput(
|
|
|