| Index: content/browser/fileapi/timed_task_helper_unittest.cc
 | 
| diff --git a/content/browser/fileapi/timed_task_helper_unittest.cc b/content/browser/fileapi/timed_task_helper_unittest.cc
 | 
| index 1bdc25d727a4e282aeb3178cd08a54563c519c62..5a6ac8df0e5e10a50856d841c28da77ca8c2abf7 100644
 | 
| --- a/content/browser/fileapi/timed_task_helper_unittest.cc
 | 
| +++ b/content/browser/fileapi/timed_task_helper_unittest.cc
 | 
| @@ -6,8 +6,8 @@
 | 
|  #include "base/bind.h"
 | 
|  #include "base/location.h"
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
| +#include "base/message_loop/message_loop_proxy.h"
 | 
|  #include "base/run_loop.h"
 | 
| -#include "base/thread_task_runner_handle.h"
 | 
|  #include "base/time/time.h"
 | 
|  #include "storage/browser/fileapi/timed_task_helper.h"
 | 
|  #include "testing/gtest/include/gtest/gtest.h"
 | 
| @@ -21,8 +21,7 @@ namespace {
 | 
|  class Embedder {
 | 
|   public:
 | 
|    Embedder()
 | 
| -      : timer_(base::ThreadTaskRunnerHandle::Get().get()),
 | 
| -        timer_fired_(false) {}
 | 
| +      : timer_(base::MessageLoopProxy::current().get()), timer_fired_(false) {}
 | 
|  
 | 
|    void OnTimerFired() {
 | 
|      timer_fired_ = true;
 | 
| 
 |