| Index: chrome/browser/sync/glue/http_bridge.cc
|
| diff --git a/chrome/browser/sync/glue/http_bridge.cc b/chrome/browser/sync/glue/http_bridge.cc
|
| index 228418f740e00d0c17cc6bd8c35cb0b6d8e1e2f4..a0f0c703c816bb75baa2a778c44ced942374e698 100644
|
| --- a/chrome/browser/sync/glue/http_bridge.cc
|
| +++ b/chrome/browser/sync/glue/http_bridge.cc
|
| @@ -193,7 +193,7 @@ bool HttpBridge::MakeSynchronousPost(int* error_code, int* response_code) {
|
|
|
| if (!BrowserThread::PostTask(
|
| BrowserThread::IO, FROM_HERE,
|
| - NewRunnableMethod(this, &HttpBridge::CallMakeAsynchronousPost))) {
|
| + base::Bind(&HttpBridge::CallMakeAsynchronousPost, this))) {
|
| // This usually happens when we're in a unit test.
|
| LOG(WARNING) << "Could not post CallMakeAsynchronousPost task";
|
| return false;
|
|
|