| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/appcache/chrome_appcache_service.h" | 5 #include "content/browser/appcache/chrome_appcache_service.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "content/browser/appcache/appcache_storage_impl.h" | 8 #include "content/browser/appcache/appcache_storage_impl.h" |
| 9 #include "content/public/browser/browser_thread.h" | 9 #include "content/public/browser/browser_thread.h" |
| 10 #include "content/public/browser/content_browser_client.h" | 10 #include "content/public/browser/content_browser_client.h" |
| 11 #include "content/public/browser/resource_context.h" | 11 #include "content/public/browser/resource_context.h" |
| 12 #include "net/base/net_errors.h" | 12 #include "net/base/net_errors.h" |
| 13 #include "net/url_request/url_request_context_getter.h" | 13 #include "net/url_request/url_request_context_getter.h" |
| 14 #include "webkit/browser/quota/quota_manager.h" | 14 #include "webkit/browser/quota/quota_manager.h" |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 | 17 |
| 18 ChromeAppCacheService::ChromeAppCacheService( | 18 ChromeAppCacheService::ChromeAppCacheService( |
| 19 quota::QuotaManagerProxy* quota_manager_proxy) | 19 storage::QuotaManagerProxy* quota_manager_proxy) |
| 20 : AppCacheServiceImpl(quota_manager_proxy), | 20 : AppCacheServiceImpl(quota_manager_proxy), resource_context_(NULL) { |
| 21 resource_context_(NULL) { | |
| 22 } | 21 } |
| 23 | 22 |
| 24 void ChromeAppCacheService::InitializeOnIOThread( | 23 void ChromeAppCacheService::InitializeOnIOThread( |
| 25 const base::FilePath& cache_path, | 24 const base::FilePath& cache_path, |
| 26 ResourceContext* resource_context, | 25 ResourceContext* resource_context, |
| 27 net::URLRequestContextGetter* request_context_getter, | 26 net::URLRequestContextGetter* request_context_getter, |
| 28 scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy) { | 27 scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy) { |
| 29 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 28 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 30 | 29 |
| 31 cache_path_ = cache_path; | 30 cache_path_ = cache_path; |
| 32 resource_context_ = resource_context; | 31 resource_context_ = resource_context; |
| 33 | 32 |
| 34 // The |request_context_getter| can be NULL in some unit tests. | 33 // The |request_context_getter| can be NULL in some unit tests. |
| 35 // | 34 // |
| 36 // TODO(ajwong): TestProfile is difficult to work with. The | 35 // TODO(ajwong): TestProfile is difficult to work with. The |
| 37 // SafeBrowsing tests require that GetRequestContext return NULL | 36 // SafeBrowsing tests require that GetRequestContext return NULL |
| 38 // so we can't depend on having a non-NULL value here. See crbug/149783. | 37 // so we can't depend on having a non-NULL value here. See crbug/149783. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 return; | 72 return; |
| 74 } | 73 } |
| 75 if (BrowserThread::IsMessageLoopValid(BrowserThread::IO)) { | 74 if (BrowserThread::IsMessageLoopValid(BrowserThread::IO)) { |
| 76 BrowserThread::DeleteSoon(BrowserThread::IO, FROM_HERE, this); | 75 BrowserThread::DeleteSoon(BrowserThread::IO, FROM_HERE, this); |
| 77 return; | 76 return; |
| 78 } | 77 } |
| 79 // Better to leak than crash on shutdown. | 78 // Better to leak than crash on shutdown. |
| 80 } | 79 } |
| 81 | 80 |
| 82 } // namespace content | 81 } // namespace content |
| OLD | NEW |