| OLD | NEW |
| 1 // Copyright (c) 2009 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_STORAGE_IMPL_H_ | 5 #ifndef WEBKIT_APPCACHE_APPCACHE_STORAGE_IMPL_H_ |
| 6 #define WEBKIT_APPCACHE_APPCACHE_STORAGE_IMPL_H_ | 6 #define WEBKIT_APPCACHE_APPCACHE_STORAGE_IMPL_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <vector> | 11 #include <vector> |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 // Used to short-circuit certain operations without having to schedule | 145 // Used to short-circuit certain operations without having to schedule |
| 146 // any tasks on the background database thread. | 146 // any tasks on the background database thread. |
| 147 std::set<GURL> origins_with_groups_; | 147 std::set<GURL> origins_with_groups_; |
| 148 std::deque<Task*> pending_simple_tasks_; | 148 std::deque<Task*> pending_simple_tasks_; |
| 149 ScopedRunnableMethodFactory<AppCacheStorageImpl> method_factory_; | 149 ScopedRunnableMethodFactory<AppCacheStorageImpl> method_factory_; |
| 150 }; | 150 }; |
| 151 | 151 |
| 152 } // namespace appcache | 152 } // namespace appcache |
| 153 | 153 |
| 154 #endif // WEBKIT_APPCACHE_APPCACHE_STORAGE_IMPL_H_ | 154 #endif // WEBKIT_APPCACHE_APPCACHE_STORAGE_IMPL_H_ |
| OLD | NEW |