Index: net/disk_cache/backend_unittest.cc |
diff --git a/net/disk_cache/backend_unittest.cc b/net/disk_cache/backend_unittest.cc |
index 3bf1aac778aeeb5bdce994cccd99b26b5c810245..dd7bf89476d1c54447eec5adc040c8930d7c7b00 100644 |
--- a/net/disk_cache/backend_unittest.cc |
+++ b/net/disk_cache/backend_unittest.cc |
@@ -266,7 +266,7 @@ TEST_F(DiskCacheTest, ShutdownWithPendingIO) { |
disk_cache::Backend* cache; |
int rv = disk_cache::BackendImpl::CreateBackend( |
path, false, 0, net::DISK_CACHE, disk_cache::kNoRandom, |
- base::MessageLoopProxy::CreateForCurrentThread(), NULL, |
+ base::MessageLoopProxy::current(), NULL, |
&cache, &cb); |
ASSERT_EQ(net::OK, cb.GetResult(rv)); |
@@ -1818,7 +1818,7 @@ TEST_F(DiskCacheTest, Backend_UsageStats) { |
ASSERT_TRUE(DeleteCache(path)); |
scoped_ptr<disk_cache::BackendImpl> cache; |
cache.reset(new disk_cache::BackendImpl( |
- path, base::MessageLoopProxy::CreateForCurrentThread(), |
+ path, base::MessageLoopProxy::current(), |
NULL)); |
ASSERT_TRUE(NULL != cache.get()); |
cache->SetUnitTestMode(); |