| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <set> | 9 #include <set> |
| 9 #include <vector> | |
| 10 | 10 |
| 11 #include "base/ref_counted.h" | 11 #include "base/ref_counted.h" |
| 12 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
| 13 #include "base/time.h" | 13 #include "base/time.h" |
| 14 #include "net/base/completion_callback.h" | 14 #include "net/base/completion_callback.h" |
| 15 #include "net/base/net_errors.h" | 15 #include "net/base/net_errors.h" |
| 16 #include "testing/gtest/include/gtest/gtest_prod.h" | 16 #include "testing/gtest/include/gtest/gtest_prod.h" |
| 17 #include "webkit/appcache/appcache_interfaces.h" | 17 #include "webkit/appcache/appcache_interfaces.h" |
| 18 #include "webkit/appcache/appcache_storage.h" | 18 #include "webkit/appcache/appcache_storage.h" |
| 19 | 19 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 URLRequestContext* request_context_; | 118 URLRequestContext* request_context_; |
| 119 | 119 |
| 120 // TODO(jennb): service state: e.g. reached quota? | 120 // TODO(jennb): service state: e.g. reached quota? |
| 121 | 121 |
| 122 DISALLOW_COPY_AND_ASSIGN(AppCacheService); | 122 DISALLOW_COPY_AND_ASSIGN(AppCacheService); |
| 123 }; | 123 }; |
| 124 | 124 |
| 125 } // namespace appcache | 125 } // namespace appcache |
| 126 | 126 |
| 127 #endif // WEBKIT_APPCACHE_APPCACHE_SERVICE_H_ | 127 #endif // WEBKIT_APPCACHE_APPCACHE_SERVICE_H_ |
| OLD | NEW |