Index: ppapi/proxy/ppb_var_deprecated_proxy.cc |
diff --git a/ppapi/proxy/ppb_var_deprecated_proxy.cc b/ppapi/proxy/ppb_var_deprecated_proxy.cc |
index 5c3cf615e1d76c1fa3870dc58e836728ac549e1d..29aa2c06c5f609f2ab597e8ef9cf96636a2c38ff 100644 |
--- a/ppapi/proxy/ppb_var_deprecated_proxy.cc |
+++ b/ppapi/proxy/ppb_var_deprecated_proxy.cc |
@@ -392,10 +392,11 @@ void PPB_Var_Deprecated_Proxy::OnMsgReleaseObject(int64 object_id) { |
// spurious warning). |
// TODO(piman): See if we can fix the IPC code to enforce strict ordering, and |
// then remove this. |
- MessageLoop::current()->PostNonNestableTask(FROM_HERE, |
+ base::MessageLoop::current()->PostNonNestableTask( |
+ FROM_HERE, |
RunWhileLocked(base::Bind(&PPB_Var_Deprecated_Proxy::DoReleaseObject, |
- task_factory_.GetWeakPtr(), |
- object_id))); |
+ task_factory_.GetWeakPtr(), |
+ object_id))); |
} |
void PPB_Var_Deprecated_Proxy::OnMsgHasProperty( |