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

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

Issue 214233005: Move mock_quota_manager and friends from webkit/ to content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use FORWARD_DECLARE_TEST to fix compile errors Created 6 years, 8 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
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_MANAGER_H_ 5 #ifndef WEBKIT_BROWSER_QUOTA_QUOTA_MANAGER_H_
6 #define WEBKIT_BROWSER_QUOTA_QUOTA_MANAGER_H_ 6 #define WEBKIT_BROWSER_QUOTA_QUOTA_MANAGER_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <list> 9 #include <list>
10 #include <map> 10 #include <map>
(...skipping 20 matching lines...) Expand all
31 namespace base { 31 namespace base {
32 class FilePath; 32 class FilePath;
33 class SequencedTaskRunner; 33 class SequencedTaskRunner;
34 class SingleThreadTaskRunner; 34 class SingleThreadTaskRunner;
35 } 35 }
36 36
37 namespace quota_internals { 37 namespace quota_internals {
38 class QuotaInternalsProxy; 38 class QuotaInternalsProxy;
39 } 39 }
40 40
41 namespace content {
42 class MockQuotaManager;
43 }
44
41 namespace quota { 45 namespace quota {
42 46
43 class MockQuotaManager;
44 class QuotaDatabase; 47 class QuotaDatabase;
45 class QuotaManagerProxy; 48 class QuotaManagerProxy;
46 class QuotaTemporaryStorageEvictor; 49 class QuotaTemporaryStorageEvictor;
47 class StorageMonitor; 50 class StorageMonitor;
48 class UsageTracker; 51 class UsageTracker;
49 52
50 struct QuotaManagerDeleter; 53 struct QuotaManagerDeleter;
51 54
52 struct WEBKIT_STORAGE_BROWSER_EXPORT UsageAndQuota { 55 struct WEBKIT_STORAGE_BROWSER_EXPORT UsageAndQuota {
53 int64 usage; 56 int64 usage;
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 446
444 struct QuotaManagerDeleter { 447 struct QuotaManagerDeleter {
445 static void Destruct(const QuotaManager* manager) { 448 static void Destruct(const QuotaManager* manager) {
446 manager->DeleteOnCorrectThread(); 449 manager->DeleteOnCorrectThread();
447 } 450 }
448 }; 451 };
449 452
450 } // namespace quota 453 } // namespace quota
451 454
452 #endif // WEBKIT_BROWSER_QUOTA_QUOTA_MANAGER_H_ 455 #endif // WEBKIT_BROWSER_QUOTA_QUOTA_MANAGER_H_
OLDNEW
« chrome/chrome_tests_unit.gypi ('K') | « webkit/browser/quota/mock_quota_manager_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698