OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_QUOTA_QUOTA_DATABASE_H_ | 5 #ifndef WEBKIT_BROWSER_QUOTA_QUOTA_DATABASE_H_ |
6 #define WEBKIT_QUOTA_QUOTA_DATABASE_H_ | 6 #define WEBKIT_BROWSER_QUOTA_QUOTA_DATABASE_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/callback.h" | 12 #include "base/callback.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.h" | 16 #include "base/time.h" |
17 #include "base/timer.h" | 17 #include "base/timer.h" |
18 #include "googleurl/src/gurl.h" | 18 #include "googleurl/src/gurl.h" |
19 #include "webkit/quota/quota_types.h" | 19 #include "webkit/common/quota/quota_types.h" |
20 #include "webkit/storage/webkit_storage_export.h" | 20 #include "webkit/storage/webkit_storage_export.h" |
21 | 21 |
22 namespace sql { | 22 namespace sql { |
23 class Connection; | 23 class Connection; |
24 class MetaTable; | 24 class MetaTable; |
25 } | 25 } |
26 | 26 |
27 class GURL; | 27 class GURL; |
28 | 28 |
29 namespace quota { | 29 namespace quota { |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 friend class QuotaManager; | 176 friend class QuotaManager; |
177 | 177 |
178 static const TableSchema kTables[]; | 178 static const TableSchema kTables[]; |
179 static const IndexSchema kIndexes[]; | 179 static const IndexSchema kIndexes[]; |
180 | 180 |
181 DISALLOW_COPY_AND_ASSIGN(QuotaDatabase); | 181 DISALLOW_COPY_AND_ASSIGN(QuotaDatabase); |
182 }; | 182 }; |
183 | 183 |
184 } // namespace quota | 184 } // namespace quota |
185 | 185 |
186 #endif // WEBKIT_QUOTA_QUOTA_DATABASE_H_ | 186 #endif // WEBKIT_BROWSER_QUOTA_QUOTA_DATABASE_H_ |
OLD | NEW |