| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |