diff options
Diffstat (limited to 'ppapi/proxy/ppb_file_system_proxy.cc')
-rw-r--r-- | ppapi/proxy/ppb_file_system_proxy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/proxy/ppb_file_system_proxy.cc b/ppapi/proxy/ppb_file_system_proxy.cc index 4619a1f..1d8747a 100644 --- a/ppapi/proxy/ppb_file_system_proxy.cc +++ b/ppapi/proxy/ppb_file_system_proxy.cc @@ -94,7 +94,7 @@ PP_FileSystemType FileSystem::GetType() { } void FileSystem::OpenComplete(int32_t result) { - TrackedCallback::ClearAndRun(¤t_open_callback_, result); + current_open_callback_->Run(result); } PPB_FileSystem_Proxy::PPB_FileSystem_Proxy(Dispatcher* dispatcher) |