| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "base/file_path.h" | 8 #include "base/file_path.h" |
| 9 #include "base/logging.h" | |
| 10 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
| 11 #include "testing/gtest/include/gtest/gtest_prod.h" | 10 #include "testing/gtest/include/gtest/gtest_prod.h" |
| 12 #include "webkit/appcache/appcache_storage.h" | 11 #include "webkit/appcache/appcache_storage.h" |
| 13 | 12 |
| 14 class URLRequestContext; | 13 class URLRequestContext; |
| 15 | 14 |
| 16 namespace appcache { | 15 namespace appcache { |
| 17 | 16 |
| 18 class AppCacheBackendImpl; | 17 class AppCacheBackendImpl; |
| 19 | 18 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 URLRequestContext* request_context_; | 57 URLRequestContext* request_context_; |
| 59 | 58 |
| 60 // TODO(jennb): service state: e.g. reached quota? | 59 // TODO(jennb): service state: e.g. reached quota? |
| 61 | 60 |
| 62 DISALLOW_COPY_AND_ASSIGN(AppCacheService); | 61 DISALLOW_COPY_AND_ASSIGN(AppCacheService); |
| 63 }; | 62 }; |
| 64 | 63 |
| 65 } // namespace appcache | 64 } // namespace appcache |
| 66 | 65 |
| 67 #endif // WEBKIT_APPCACHE_APPCACHE_SERVICE_H_ | 66 #endif // WEBKIT_APPCACHE_APPCACHE_SERVICE_H_ |
| OLD | NEW |