Index: webkit/glue/weburlloader_impl.cc |
diff --git a/webkit/glue/weburlloader_impl.cc b/webkit/glue/weburlloader_impl.cc |
index 871f5a39986db5f0479823de0cc2c34514fed329..1d8f21c4515243c3fb5e3c86b20bd0ffa43b11ce 100644 |
--- a/webkit/glue/weburlloader_impl.cc |
+++ b/webkit/glue/weburlloader_impl.cc |
@@ -6,6 +6,7 @@ |
#include "webkit/glue/weburlloader_impl.h" |
+#include "base/bind.h" |
#include "base/file_path.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/message_loop.h" |
@@ -348,7 +349,7 @@ void WebURLLoaderImpl::Context::Start( |
} else { |
AddRef(); // Balanced in OnCompletedRequest |
MessageLoop::current()->PostTask(FROM_HERE, |
- NewRunnableMethod(this, &Context::HandleDataURL)); |
+ base::Bind(&Context::HandleDataURL, this)); |
} |
return; |
} |