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 STORAGE_BROWSER_QUOTA_QUOTA_MANAGER_H_ | 5 #ifndef STORAGE_BROWSER_QUOTA_QUOTA_MANAGER_H_ |
6 #define STORAGE_BROWSER_QUOTA_QUOTA_MANAGER_H_ | 6 #define STORAGE_BROWSER_QUOTA_QUOTA_MANAGER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <deque> | 10 #include <deque> |
(...skipping 19 matching lines...) Expand all Loading... |
30 #include "storage/browser/quota/quota_settings.h" | 30 #include "storage/browser/quota/quota_settings.h" |
31 #include "storage/browser/quota/quota_task.h" | 31 #include "storage/browser/quota/quota_task.h" |
32 #include "storage/browser/quota/special_storage_policy.h" | 32 #include "storage/browser/quota/special_storage_policy.h" |
33 #include "storage/browser/quota/storage_observer.h" | 33 #include "storage/browser/quota/storage_observer.h" |
34 #include "storage/browser/storage_browser_export.h" | 34 #include "storage/browser/storage_browser_export.h" |
35 | 35 |
36 namespace base { | 36 namespace base { |
37 class FilePath; | 37 class FilePath; |
38 class SequencedTaskRunner; | 38 class SequencedTaskRunner; |
39 class SingleThreadTaskRunner; | 39 class SingleThreadTaskRunner; |
| 40 class TaskRunner; |
40 } | 41 } |
41 | 42 |
42 namespace quota_internals { | 43 namespace quota_internals { |
43 class QuotaInternalsProxy; | 44 class QuotaInternalsProxy; |
44 } | 45 } |
45 | 46 |
46 namespace content { | 47 namespace content { |
47 class MockQuotaManager; | 48 class MockQuotaManager; |
48 class MockStorageClient; | 49 class MockStorageClient; |
49 class QuotaManagerTest; | 50 class QuotaManagerTest; |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 | 468 |
468 struct QuotaManagerDeleter { | 469 struct QuotaManagerDeleter { |
469 static void Destruct(const QuotaManager* manager) { | 470 static void Destruct(const QuotaManager* manager) { |
470 manager->DeleteOnCorrectThread(); | 471 manager->DeleteOnCorrectThread(); |
471 } | 472 } |
472 }; | 473 }; |
473 | 474 |
474 } // namespace storage | 475 } // namespace storage |
475 | 476 |
476 #endif // STORAGE_BROWSER_QUOTA_QUOTA_MANAGER_H_ | 477 #endif // STORAGE_BROWSER_QUOTA_QUOTA_MANAGER_H_ |
OLD | NEW |