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

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

Issue 2696613004: Add missing #include around sequenced_worker_pool.h in //content, //storage (Closed)
Patch Set: rebase Created 3 years, 10 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
« no previous file with comments | « storage/browser/blob/blob_data_handle.h ('k') | no next file » | 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 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
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
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_
OLDNEW
« no previous file with comments | « storage/browser/blob/blob_data_handle.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698