| 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 9d815d54d7c78c71373ef56f68078bd6c2d8a8ab..3fb3cc6f27a73613a19af1b5cdaa406b7e3c582d 100644
|
| --- a/content/browser/appcache/appcache_storage_impl_unittest.cc
|
| +++ b/content/browser/appcache/appcache_storage_impl_unittest.cc
|
| @@ -1742,7 +1742,7 @@ class AppCacheStorageImplTest : public testing::Test {
|
| void Continue_Reinitialize(ReinitTestCase test_case) {
|
| const int kMockProcessId = 1;
|
| backend_.reset(new AppCacheBackendImpl);
|
| - backend_->Initialize(service_.get(), &frontend_, kMockProcessId);
|
| + backend_->Initialize(service_.get(), &frontend_, kMockProcessId, -1);
|
|
|
| if (test_case == CORRUPT_SQL_ON_INSTALL) {
|
| // Break the db file
|
| @@ -1773,10 +1773,8 @@ class AppCacheStorageImplTest : public testing::Test {
|
| request_ = service()->request_context()->CreateRequest(
|
| manifest_url, net::DEFAULT_PRIORITY, &request_delegate_);
|
| AppCacheInterceptor::SetExtraRequestInfo(
|
| - request_.get(), service_.get(),
|
| - backend_->process_id(), host2->host_id(),
|
| - RESOURCE_TYPE_MAIN_FRAME,
|
| - false);
|
| + request_.get(), service_.get(), backend_->process_id(), -1,
|
| + host2->host_id(), RESOURCE_TYPE_MAIN_FRAME, false);
|
| request_->Start();
|
| }
|
|
|
|
|