summaryrefslogtreecommitdiffstats
path: root/webkit/common
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/common')
-rw-r--r--webkit/common/blob/scoped_file.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/common/blob/scoped_file.cc b/webkit/common/blob/scoped_file.cc
index df1d3d4..56f0743 100644
--- a/webkit/common/blob/scoped_file.cc
+++ b/webkit/common/blob/scoped_file.cc
@@ -41,7 +41,7 @@ void ScopedFile::AddScopeOutCallback(
const ScopeOutCallback& callback,
base::TaskRunner* callback_runner) {
if (!callback_runner)
- callback_runner = base::MessageLoopProxy::current();
+ callback_runner = base::MessageLoopProxy::current().get();
scope_out_callbacks_.push_back(std::make_pair(callback, callback_runner));
}