| 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_H_ | 5 #ifndef WEBKIT_APPCACHE_APPCACHE_H_ |
| 6 #define WEBKIT_APPCACHE_APPCACHE_H_ | 6 #define WEBKIT_APPCACHE_APPCACHE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | |
| 11 #include <vector> | 10 #include <vector> |
| 12 | 11 |
| 13 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 14 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
| 15 #include "base/time.h" | 14 #include "base/time.h" |
| 16 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
| 17 #include "webkit/appcache/appcache_database.h" | 16 #include "webkit/appcache/appcache_database.h" |
| 18 #include "webkit/appcache/appcache_entry.h" | 17 #include "webkit/appcache/appcache_entry.h" |
| 19 #include "webkit/appcache/manifest_parser.h" | 18 #include "webkit/appcache/manifest_parser.h" |
| 20 | 19 |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 AppCacheService* service_; | 146 AppCacheService* service_; |
| 148 | 147 |
| 149 FRIEND_TEST_ALL_PREFIXES(AppCacheTest, InitializeWithManifest); | 148 FRIEND_TEST_ALL_PREFIXES(AppCacheTest, InitializeWithManifest); |
| 150 | 149 |
| 151 DISALLOW_COPY_AND_ASSIGN(AppCache); | 150 DISALLOW_COPY_AND_ASSIGN(AppCache); |
| 152 }; | 151 }; |
| 153 | 152 |
| 154 } // namespace appcache | 153 } // namespace appcache |
| 155 | 154 |
| 156 #endif // WEBKIT_APPCACHE_APPCACHE_H_ | 155 #endif // WEBKIT_APPCACHE_APPCACHE_H_ |
| OLD | NEW |