| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_APPCACHE_APPCACHE_H_ | 5 #ifndef WEBKIT_BROWSER_APPCACHE_APPCACHE_H_ |
| 6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_H_ | 6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 15 #include "googleurl/src/gurl.h" | 15 #include "url/gurl.h" |
| 16 #include "webkit/browser/appcache/appcache_database.h" | 16 #include "webkit/browser/appcache/appcache_database.h" |
| 17 #include "webkit/browser/appcache/appcache_entry.h" | 17 #include "webkit/browser/appcache/appcache_entry.h" |
| 18 #include "webkit/browser/appcache/manifest_parser.h" | 18 #include "webkit/browser/appcache/manifest_parser.h" |
| 19 #include "webkit/browser/webkit_storage_browser_export.h" | 19 #include "webkit/browser/webkit_storage_browser_export.h" |
| 20 | 20 |
| 21 namespace net { | 21 namespace net { |
| 22 class IOBuffer; | 22 class IOBuffer; |
| 23 } | 23 } |
| 24 | 24 |
| 25 namespace appcache { | 25 namespace appcache { |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 AppCacheStorage* storage_; | 196 AppCacheStorage* storage_; |
| 197 | 197 |
| 198 FRIEND_TEST_ALL_PREFIXES(AppCacheTest, InitializeWithManifest); | 198 FRIEND_TEST_ALL_PREFIXES(AppCacheTest, InitializeWithManifest); |
| 199 FRIEND_TEST_ALL_PREFIXES(AppCacheTest, ToFromDatabaseRecords); | 199 FRIEND_TEST_ALL_PREFIXES(AppCacheTest, ToFromDatabaseRecords); |
| 200 DISALLOW_COPY_AND_ASSIGN(AppCache); | 200 DISALLOW_COPY_AND_ASSIGN(AppCache); |
| 201 }; | 201 }; |
| 202 | 202 |
| 203 } // namespace appcache | 203 } // namespace appcache |
| 204 | 204 |
| 205 #endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_H_ | 205 #endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_H_ |
| OLD | NEW |