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_APPCACHE_APPCACHE_SERVICE_H_ | 5 #ifndef WEBKIT_APPCACHE_APPCACHE_SERVICE_H_ |
6 #define WEBKIT_APPCACHE_APPCACHE_SERVICE_H_ | 6 #define WEBKIT_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/time.h" | |
15 #include "net/base/completion_callback.h" | 14 #include "net/base/completion_callback.h" |
16 #include "net/base/net_errors.h" | 15 #include "net/base/net_errors.h" |
17 #include "webkit/appcache/appcache_export.h" | 16 #include "webkit/appcache/appcache_export.h" |
18 #include "webkit/appcache/appcache_interfaces.h" | 17 #include "webkit/appcache/appcache_interfaces.h" |
19 #include "webkit/appcache/appcache_storage.h" | 18 #include "webkit/appcache/appcache_storage.h" |
20 | 19 |
21 class FilePath; | 20 class FilePath; |
22 | 21 |
23 namespace net { | 22 namespace net { |
24 class URLRequestContext; | 23 class URLRequestContext; |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 net::URLRequestContext* request_context_; | 171 net::URLRequestContext* request_context_; |
173 // If true, nothing (not even session-only data) should be deleted on exit. | 172 // If true, nothing (not even session-only data) should be deleted on exit. |
174 bool force_keep_session_state_; | 173 bool force_keep_session_state_; |
175 | 174 |
176 DISALLOW_COPY_AND_ASSIGN(AppCacheService); | 175 DISALLOW_COPY_AND_ASSIGN(AppCacheService); |
177 }; | 176 }; |
178 | 177 |
179 } // namespace appcache | 178 } // namespace appcache |
180 | 179 |
181 #endif // WEBKIT_APPCACHE_APPCACHE_SERVICE_H_ | 180 #endif // WEBKIT_APPCACHE_APPCACHE_SERVICE_H_ |
OLD | NEW |