OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_H_ | 5 #ifndef WEBKIT_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_H_ |
6 #define WEBKIT_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_H_ | 6 #define WEBKIT_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_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 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
15 #include "base/file_path.h" | 15 #include "base/file_path.h" |
16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
17 #include "webkit/fileapi/file_system_path_manager.h" | |
18 #include "webkit/fileapi/file_system_quota_util.h" | 17 #include "webkit/fileapi/file_system_quota_util.h" |
19 #include "webkit/fileapi/file_system_types.h" | 18 #include "webkit/fileapi/file_system_types.h" |
20 #include "webkit/quota/quota_client.h" | 19 #include "webkit/quota/quota_client.h" |
21 #include "webkit/quota/quota_task.h" | 20 #include "webkit/quota/quota_task.h" |
22 | 21 |
23 namespace fileapi { | 22 namespace fileapi { |
24 | 23 |
25 class FileSystemContext; | 24 class FileSystemContext; |
26 | 25 |
27 // An instance of this class is created per-profile. This class | 26 // An instance of this class is created per-profile. This class |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 UsageCallbackMap pending_usage_callbacks_; | 94 UsageCallbackMap pending_usage_callbacks_; |
96 OriginsForTypeCallbackMap pending_origins_for_type_callbacks_; | 95 OriginsForTypeCallbackMap pending_origins_for_type_callbacks_; |
97 OriginsForHostCallbackMap pending_origins_for_host_callbacks_; | 96 OriginsForHostCallbackMap pending_origins_for_host_callbacks_; |
98 | 97 |
99 DISALLOW_COPY_AND_ASSIGN(FileSystemQuotaClient); | 98 DISALLOW_COPY_AND_ASSIGN(FileSystemQuotaClient); |
100 }; | 99 }; |
101 | 100 |
102 } // namespace fileapi | 101 } // namespace fileapi |
103 | 102 |
104 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_H_ | 103 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_H_ |
OLD | NEW |