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 #ifndef WEBKIT_BROWSER_APPCACHE_APPCACHE_SERVICE_H_ | 5 #ifndef WEBKIT_BROWSER_APPCACHE_APPCACHE_SERVICE_H_ |
6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_SERVICE_H_ | 6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_SERVICE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 | 10 |
11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
15 #include "net/base/completion_callback.h" | 15 #include "net/base/completion_callback.h" |
16 #include "net/base/net_errors.h" | 16 #include "net/base/net_errors.h" |
17 #include "webkit/browser/appcache/appcache_storage.h" | 17 #include "webkit/browser/appcache/appcache_storage.h" |
| 18 #include "webkit/browser/quota/quota_manager_proxy.h" |
18 #include "webkit/browser/webkit_storage_browser_export.h" | 19 #include "webkit/browser/webkit_storage_browser_export.h" |
19 #include "webkit/common/appcache/appcache_interfaces.h" | 20 #include "webkit/common/appcache/appcache_interfaces.h" |
20 | 21 |
21 namespace net { | 22 namespace net { |
22 class URLRequestContext; | 23 class URLRequestContext; |
23 } // namespace net | 24 } // namespace net |
24 | 25 |
25 namespace base { | 26 namespace base { |
26 class FilePath; | 27 class FilePath; |
27 class MessageLoopProxy; | 28 class MessageLoopProxy; |
28 } | 29 } |
29 | 30 |
30 namespace quota { | 31 namespace quota { |
31 class QuotaManagerProxy; | |
32 class SpecialStoragePolicy; | 32 class SpecialStoragePolicy; |
33 } | 33 } |
34 | 34 |
35 namespace appcache { | 35 namespace appcache { |
36 | 36 |
37 class AppCacheBackendImpl; | 37 class AppCacheBackendImpl; |
38 class AppCacheExecutableHandlerFactory; | 38 class AppCacheExecutableHandlerFactory; |
39 class AppCacheQuotaClient; | 39 class AppCacheQuotaClient; |
40 class AppCachePolicy; | 40 class AppCachePolicy; |
41 | 41 |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 bool force_keep_session_state_; | 229 bool force_keep_session_state_; |
230 bool was_reinitialized_; | 230 bool was_reinitialized_; |
231 ObserverList<Observer> observers_; | 231 ObserverList<Observer> observers_; |
232 | 232 |
233 DISALLOW_COPY_AND_ASSIGN(AppCacheService); | 233 DISALLOW_COPY_AND_ASSIGN(AppCacheService); |
234 }; | 234 }; |
235 | 235 |
236 } // namespace appcache | 236 } // namespace appcache |
237 | 237 |
238 #endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_SERVICE_H_ | 238 #endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_SERVICE_H_ |
OLD | NEW |