Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: content/browser/appcache/appcache_service_impl.h

Issue 1162943002: Replace more ObserverList with base::ObserverList. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@observer
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/browser/appcache/appcache_host.h ('k') | content/browser/compositor/gpu_process_transport_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698