| Index: chrome_frame/test/urlmon_moniker_integration_test.cc
|
| diff --git a/chrome_frame/test/urlmon_moniker_integration_test.cc b/chrome_frame/test/urlmon_moniker_integration_test.cc
|
| index 0812b530335a4dae3e2ea528ebd877617c31c199..7c656a8cef9a9a09ceea6ffd71df7ea5d2a1a5c2 100644
|
| --- a/chrome_frame/test/urlmon_moniker_integration_test.cc
|
| +++ b/chrome_frame/test/urlmon_moniker_integration_test.cc
|
| @@ -5,6 +5,7 @@
|
| #include <atlbase.h>
|
| #include <atlcom.h>
|
|
|
| +#include "base/bind.h"
|
| #include "base/threading/thread.h"
|
| #include "base/win/scoped_comptr.h"
|
| #include "base/win/scoped_handle.h"
|
| @@ -67,7 +68,7 @@ class RunTestServer : public base::Thread {
|
| bool ret = StartWithOptions(Options(MessageLoop::TYPE_UI, 0));
|
| if (ret) {
|
| message_loop()->PostTask(FROM_HERE,
|
| - NewRunnableFunction(&RunTestServer::StartServer, this));
|
| + base::Bind(&RunTestServer::StartServer, this));
|
| wait_until_ready();
|
| }
|
| return ret;
|
|
|