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

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

Issue 16010007: Move webkit/quota files to webkit/browser/quota or webkit/common/quota (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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 (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
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_
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