| Index: content/browser/presentation/presentation_service_impl_unittest.cc
 | 
| diff --git a/content/browser/presentation/presentation_service_impl_unittest.cc b/content/browser/presentation/presentation_service_impl_unittest.cc
 | 
| index 81a2dba6ef451de192ad52e52e6d93665f967a01..677418fd90a10e0ff5fdf3b8415c91b3387119d6 100644
 | 
| --- a/content/browser/presentation/presentation_service_impl_unittest.cc
 | 
| +++ b/content/browser/presentation/presentation_service_impl_unittest.cc
 | 
| @@ -2,12 +2,10 @@
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| -#include "base/location.h"
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
| +#include "base/message_loop/message_loop.h"
 | 
|  #include "base/run_loop.h"
 | 
| -#include "base/single_thread_task_runner.h"
 | 
|  #include "base/test/test_timeouts.h"
 | 
| -#include "base/thread_task_runner_handle.h"
 | 
|  #include "content/browser/presentation/presentation_service_impl.h"
 | 
|  #include "content/public/browser/presentation_service_delegate.h"
 | 
|  #include "content/public/browser/presentation_session.h"
 | 
| @@ -176,7 +174,7 @@ class PresentationServiceImplTest : public RenderViewHostImplTestHarness {
 | 
|  
 | 
|    void RunLoopFor(base::TimeDelta duration) {
 | 
|      base::RunLoop run_loop;
 | 
| -    base::ThreadTaskRunnerHandle::Get()->PostDelayedTask(
 | 
| +    base::MessageLoop::current()->PostDelayedTask(
 | 
|          FROM_HERE, run_loop.QuitClosure(), duration);
 | 
|      run_loop.Run();
 | 
|    }
 | 
| 
 |