| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_SERVICE_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_SERVICE_IMPL_H_ |
| 6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_SERVICE_IMPL_H_ | 6 #define CONTENT_BROWSER_APPCACHE_APPCACHE_SERVICE_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 scoped_refptr<storage::QuotaManagerProxy> quota_manager_proxy_; | 205 scoped_refptr<storage::QuotaManagerProxy> quota_manager_proxy_; |
| 206 PendingAsyncHelpers pending_helpers_; | 206 PendingAsyncHelpers pending_helpers_; |
| 207 BackendMap backends_; // One 'backend' per child process. | 207 BackendMap backends_; // One 'backend' per child process. |
| 208 // Context for use during cache updates. | 208 // Context for use during cache updates. |
| 209 net::URLRequestContext* request_context_; | 209 net::URLRequestContext* request_context_; |
| 210 // If true, nothing (not even session-only data) should be deleted on exit. | 210 // If true, nothing (not even session-only data) should be deleted on exit. |
| 211 bool force_keep_session_state_; | 211 bool force_keep_session_state_; |
| 212 base::Time last_reinit_time_; | 212 base::Time last_reinit_time_; |
| 213 base::TimeDelta next_reinit_delay_; | 213 base::TimeDelta next_reinit_delay_; |
| 214 base::OneShotTimer<AppCacheServiceImpl> reinit_timer_; | 214 base::OneShotTimer<AppCacheServiceImpl> reinit_timer_; |
| 215 ObserverList<Observer> observers_; | 215 base::ObserverList<Observer> observers_; |
| 216 | 216 |
| 217 DISALLOW_COPY_AND_ASSIGN(AppCacheServiceImpl); | 217 DISALLOW_COPY_AND_ASSIGN(AppCacheServiceImpl); |
| 218 }; | 218 }; |
| 219 | 219 |
| 220 } // namespace content | 220 } // namespace content |
| 221 | 221 |
| 222 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_SERVICE_IMPL_H_ | 222 #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_SERVICE_IMPL_H_ |
| OLD | NEW |