Index: chrome_frame/test/net/fake_external_tab.cc |
diff --git a/chrome_frame/test/net/fake_external_tab.cc b/chrome_frame/test/net/fake_external_tab.cc |
index c33b54c2e6c5f84fe585c9350815aa09ebbb059a..b597289079979c7197c0f2b7e5623a62226a22aa 100644 |
--- a/chrome_frame/test/net/fake_external_tab.cc |
+++ b/chrome_frame/test/net/fake_external_tab.cc |
@@ -8,6 +8,7 @@ |
#include <atlcom.h> |
#include <exdisp.h> |
+#include "base/bind.h" |
#include "base/command_line.h" |
#include "base/debug/debugger.h" |
#include "base/file_util.h" |
@@ -416,7 +417,7 @@ DWORD CFUrlRequestUnittestRunner::RunAllUnittests(void* param) { |
reinterpret_cast<CFUrlRequestUnittestRunner*>(param); |
me->test_result_ = me->Run(); |
me->fake_chrome_.ui_loop()->PostTask(FROM_HERE, |
- NewRunnableFunction(TakeDownBrowser, me)); |
+ base::Bind(TakeDownBrowser, me)); |
return 0; |
} |