| 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 6a1a0144c1a56110de68770ba60406279805b552..012805d34d2361f12a7705256b3bc9665a53002e 100644
|
| --- a/chrome_frame/test/net/fake_external_tab.cc
|
| +++ b/chrome_frame/test/net/fake_external_tab.cc
|
| @@ -743,7 +743,7 @@ void CFUrlRequestUnittestRunner::StartInitializationTimeout() {
|
| timeout_closure_.Reset(
|
| base::Bind(&CFUrlRequestUnittestRunner::OnInitializationTimeout,
|
| base::Unretained(this)));
|
| - MessageLoop::current()->PostDelayedTask(
|
| + base::MessageLoop::current()->PostDelayedTask(
|
| FROM_HERE,
|
| timeout_closure_.callback(),
|
| TestTimeouts::action_max_timeout());
|
| @@ -825,8 +825,8 @@ void CFUrlRequestUnittestRunner::PreMainMessageLoopRun() {
|
| }
|
|
|
| bool CFUrlRequestUnittestRunner::MainMessageLoopRun(int* result_code) {
|
| - DCHECK(MessageLoop::current());
|
| - DCHECK(MessageLoop::current()->type() == MessageLoop::TYPE_UI);
|
| + DCHECK(base::MessageLoop::current());
|
| + DCHECK(base::MessageLoop::current()->type() == base::MessageLoop::TYPE_UI);
|
|
|
| // We need to allow IO on the main thread for these tests.
|
| base::ThreadRestrictions::SetIOAllowed(true);
|
|
|