summaryrefslogtreecommitdiffstats
path: root/ppapi/shared_impl/ppb_video_capture_shared.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/shared_impl/ppb_video_capture_shared.cc')
-rw-r--r--ppapi/shared_impl/ppb_video_capture_shared.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/shared_impl/ppb_video_capture_shared.cc b/ppapi/shared_impl/ppb_video_capture_shared.cc
index 962b060..2a51b95 100644
--- a/ppapi/shared_impl/ppb_video_capture_shared.cc
+++ b/ppapi/shared_impl/ppb_video_capture_shared.cc
@@ -124,7 +124,7 @@ void PPB_VideoCapture_Shared::OnEnumerateDevicesComplete(
}
devices_ = NULL;
- TrackedCallback::ClearAndRun(&enumerate_devices_callback_, result);
+ enumerate_devices_callback_->Run(result);
}
void PPB_VideoCapture_Shared::OnOpenComplete(int32_t result) {
@@ -134,7 +134,7 @@ void PPB_VideoCapture_Shared::OnOpenComplete(int32_t result) {
// The callback may have been aborted by Close(), or the open operation is
// completed synchronously.
if (TrackedCallback::IsPending(open_callback_))
- TrackedCallback::ClearAndRun(&open_callback_, result);
+ open_callback_->Run(result);
}
bool PPB_VideoCapture_Shared::SetStatus(PP_VideoCaptureStatus_Dev status,