| Index: content/browser/appcache/appcache_storage_impl_unittest.cc
|
| diff --git a/content/browser/appcache/appcache_storage_impl_unittest.cc b/content/browser/appcache/appcache_storage_impl_unittest.cc
|
| index a59be1c7e864bdce8db858915b0293ac665cfade..df57a478a19931bbab76aea11b951f20f3d421b8 100644
|
| --- a/content/browser/appcache/appcache_storage_impl_unittest.cc
|
| +++ b/content/browser/appcache/appcache_storage_impl_unittest.cc
|
| @@ -167,9 +167,9 @@ class IOThread : public base::Thread {
|
| void Init() override {
|
| std::unique_ptr<net::URLRequestJobFactoryImpl> factory(
|
| new net::URLRequestJobFactoryImpl());
|
| - factory->SetProtocolHandler(
|
| - "http", base::WrapUnique(new MockHttpServerJobFactory(
|
| - base::WrapUnique(new AppCacheInterceptor()))));
|
| + factory->SetProtocolHandler("http",
|
| + base::MakeUnique<MockHttpServerJobFactory>(
|
| + base::MakeUnique<AppCacheInterceptor>()));
|
| job_factory_ = std::move(factory);
|
| request_context_.reset(new net::TestURLRequestContext());
|
| request_context_->set_job_factory(job_factory_.get());
|
|
|