Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: webkit/browser/quota/quota_database.h

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/browser/quota/quota_client.h ('k') | webkit/browser/quota/quota_database.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_QUOTA_QUOTA_DATABASE_H_ 5 #ifndef WEBKIT_BROWSER_QUOTA_QUOTA_DATABASE_H_
6 #define WEBKIT_BROWSER_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
(...skipping 12 matching lines...) Expand all
23 class QuotaDatabaseTest; 23 class QuotaDatabaseTest;
24 } 24 }
25 25
26 namespace sql { 26 namespace sql {
27 class Connection; 27 class Connection;
28 class MetaTable; 28 class MetaTable;
29 } 29 }
30 30
31 class GURL; 31 class GURL;
32 32
33 namespace quota { 33 namespace storage {
34 34
35 class SpecialStoragePolicy; 35 class SpecialStoragePolicy;
36 36
37 // All the methods of this class must run on the DB thread. 37 // All the methods of this class must run on the DB thread.
38 class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE QuotaDatabase { 38 class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE QuotaDatabase {
39 public: 39 public:
40 // Constants for {Get,Set}QuotaConfigValue keys. 40 // Constants for {Get,Set}QuotaConfigValue keys.
41 static const char kDesiredAvailableSpaceKey[]; 41 static const char kDesiredAvailableSpaceKey[];
42 static const char kTemporaryQuotaOverrideKey[]; 42 static const char kTemporaryQuotaOverrideKey[];
43 43
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 178
179 friend class content::QuotaDatabaseTest; 179 friend class content::QuotaDatabaseTest;
180 friend class QuotaManager; 180 friend class QuotaManager;
181 181
182 static const TableSchema kTables[]; 182 static const TableSchema kTables[];
183 static const IndexSchema kIndexes[]; 183 static const IndexSchema kIndexes[];
184 184
185 DISALLOW_COPY_AND_ASSIGN(QuotaDatabase); 185 DISALLOW_COPY_AND_ASSIGN(QuotaDatabase);
186 }; 186 };
187 187
188 } // namespace quota 188 } // namespace storage
189 189
190 #endif // WEBKIT_BROWSER_QUOTA_QUOTA_DATABASE_H_ 190 #endif // WEBKIT_BROWSER_QUOTA_QUOTA_DATABASE_H_
OLDNEW
« no previous file with comments | « webkit/browser/quota/quota_client.h ('k') | webkit/browser/quota/quota_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698