| 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_BACKEND_IMPL_H_ | 5 #ifndef WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_ |
| 6 #define WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_ | 6 #define WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/logging.h" | |
| 9 #include "base/hash_tables.h" | 8 #include "base/hash_tables.h" |
| 10 #include "webkit/appcache/appcache_host.h" | 9 #include "webkit/appcache/appcache_host.h" |
| 11 | 10 |
| 12 namespace appcache { | 11 namespace appcache { |
| 13 | 12 |
| 14 class AppCacheService; | 13 class AppCacheService; |
| 15 | 14 |
| 16 class AppCacheBackendImpl { | 15 class AppCacheBackendImpl { |
| 17 public: | 16 public: |
| 18 AppCacheBackendImpl() : service_(NULL), frontend_(NULL), process_id_(0) {} | 17 AppCacheBackendImpl() : service_(NULL), frontend_(NULL), process_id_(0) {} |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 private: | 53 private: |
| 55 AppCacheService* service_; | 54 AppCacheService* service_; |
| 56 AppCacheFrontend* frontend_; | 55 AppCacheFrontend* frontend_; |
| 57 int process_id_; | 56 int process_id_; |
| 58 HostMap hosts_; | 57 HostMap hosts_; |
| 59 }; | 58 }; |
| 60 | 59 |
| 61 } // namespace | 60 } // namespace |
| 62 | 61 |
| 63 #endif // WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_ | 62 #endif // WEBKIT_APPCACHE_APPCACHE_BACKEND_IMPL_H_ |
| OLD | NEW |