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

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

Issue 512253002: Combine storage_browser_export.h and storage_common_export.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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>
11 #include <set> 11 #include <set>
12 #include <string> 12 #include <string>
13 #include <utility> 13 #include <utility>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/basictypes.h" 16 #include "base/basictypes.h"
17 #include "base/callback.h" 17 #include "base/callback.h"
18 #include "base/files/file_path.h" 18 #include "base/files/file_path.h"
19 #include "base/memory/ref_counted.h" 19 #include "base/memory/ref_counted.h"
20 #include "base/memory/scoped_ptr.h" 20 #include "base/memory/scoped_ptr.h"
21 #include "base/memory/weak_ptr.h" 21 #include "base/memory/weak_ptr.h"
22 #include "base/sequenced_task_runner_helpers.h" 22 #include "base/sequenced_task_runner_helpers.h"
23 #include "webkit/browser/quota/quota_callbacks.h" 23 #include "webkit/browser/quota/quota_callbacks.h"
24 #include "webkit/browser/quota/quota_client.h" 24 #include "webkit/browser/quota/quota_client.h"
25 #include "webkit/browser/quota/quota_database.h" 25 #include "webkit/browser/quota/quota_database.h"
26 #include "webkit/browser/quota/quota_task.h" 26 #include "webkit/browser/quota/quota_task.h"
27 #include "webkit/browser/quota/special_storage_policy.h" 27 #include "webkit/browser/quota/special_storage_policy.h"
28 #include "webkit/browser/quota/storage_observer.h" 28 #include "webkit/browser/quota/storage_observer.h"
29 #include "webkit/browser/storage_export.h" 29 #include "webkit/common/storage_export.h"
30 30
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 }
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 450
451 struct QuotaManagerDeleter { 451 struct QuotaManagerDeleter {
452 static void Destruct(const QuotaManager* manager) { 452 static void Destruct(const QuotaManager* manager) {
453 manager->DeleteOnCorrectThread(); 453 manager->DeleteOnCorrectThread();
454 } 454 }
455 }; 455 };
456 456
457 } // namespace storage 457 } // namespace storage
458 458
459 #endif // WEBKIT_BROWSER_QUOTA_QUOTA_MANAGER_H_ 459 #endif // WEBKIT_BROWSER_QUOTA_QUOTA_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698