| Index: chrome/browser/history/history_extension_api.cc
|
| diff --git a/chrome/browser/history/history_extension_api.cc b/chrome/browser/history/history_extension_api.cc
|
| index 1c7d1e6866c967ae4fa995752caf7d82bf98ed41..bee35434acdcce514983032e037ed3aa90b7f7f6 100644
|
| --- a/chrome/browser/history/history_extension_api.cc
|
| +++ b/chrome/browser/history/history_extension_api.cc
|
| @@ -221,9 +221,7 @@ bool HistoryFunctionWithCallback::RunImpl() {
|
| void HistoryFunctionWithCallback::SendAsyncResponse() {
|
| MessageLoop::current()->PostTask(
|
| FROM_HERE,
|
| - NewRunnableMethod(
|
| - this,
|
| - &HistoryFunctionWithCallback::SendResponseToCallback));
|
| + base::Bind(&HistoryFunctionWithCallback::SendResponseToCallback, this));
|
| }
|
|
|
| void HistoryFunctionWithCallback::SendResponseToCallback() {
|
|
|