| 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_DATABASE_H_ | 5 #ifndef WEBKIT_BROWSER_APPCACHE_APPCACHE_DATABASE_H_ |
| 6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_DATABASE_H_ | 6 #define WEBKIT_BROWSER_APPCACHE_APPCACHE_DATABASE_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/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/time/time.h" | 16 #include "base/time/time.h" |
| 17 #include "googleurl/src/gurl.h" | 17 #include "url/gurl.h" |
| 18 #include "webkit/browser/webkit_storage_browser_export.h" | 18 #include "webkit/browser/webkit_storage_browser_export.h" |
| 19 #include "webkit/common/appcache/appcache_interfaces.h" | 19 #include "webkit/common/appcache/appcache_interfaces.h" |
| 20 | 20 |
| 21 namespace sql { | 21 namespace sql { |
| 22 class Connection; | 22 class Connection; |
| 23 class MetaTable; | 23 class MetaTable; |
| 24 class Statement; | 24 class Statement; |
| 25 class StatementID; | 25 class StatementID; |
| 26 } | 26 } |
| 27 | 27 |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 FRIEND_TEST_ALL_PREFIXES(AppCacheDatabaseTest, OriginUsage); | 217 FRIEND_TEST_ALL_PREFIXES(AppCacheDatabaseTest, OriginUsage); |
| 218 FRIEND_TEST_ALL_PREFIXES(AppCacheDatabaseTest, UpgradeSchema3to5); | 218 FRIEND_TEST_ALL_PREFIXES(AppCacheDatabaseTest, UpgradeSchema3to5); |
| 219 FRIEND_TEST_ALL_PREFIXES(AppCacheDatabaseTest, UpgradeSchema4to5); | 219 FRIEND_TEST_ALL_PREFIXES(AppCacheDatabaseTest, UpgradeSchema4to5); |
| 220 | 220 |
| 221 DISALLOW_COPY_AND_ASSIGN(AppCacheDatabase); | 221 DISALLOW_COPY_AND_ASSIGN(AppCacheDatabase); |
| 222 }; | 222 }; |
| 223 | 223 |
| 224 } // namespace appcache | 224 } // namespace appcache |
| 225 | 225 |
| 226 #endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_DATABASE_H_ | 226 #endif // WEBKIT_BROWSER_APPCACHE_APPCACHE_DATABASE_H_ |
| OLD | NEW |