OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/compiler_specific.h" |
13 #include "base/file_path.h" | 14 #include "base/file_path.h" |
14 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/ref_counted.h" |
15 #include "webkit/fileapi/file_system_quota_util.h" | 16 #include "webkit/fileapi/file_system_quota_util.h" |
16 #include "webkit/fileapi/file_system_types.h" | 17 #include "webkit/fileapi/file_system_types.h" |
17 #include "webkit/quota/quota_client.h" | 18 #include "webkit/quota/quota_client.h" |
18 #include "webkit/quota/quota_task.h" | 19 #include "webkit/quota/quota_task.h" |
19 | 20 |
20 namespace base { | 21 namespace base { |
21 class SequencedTaskRunner; | 22 class SequencedTaskRunner; |
22 } | 23 } |
23 | 24 |
24 namespace fileapi { | 25 namespace fileapi { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 UsageCallbackMap pending_usage_callbacks_; | 97 UsageCallbackMap pending_usage_callbacks_; |
97 OriginsForTypeCallbackMap pending_origins_for_type_callbacks_; | 98 OriginsForTypeCallbackMap pending_origins_for_type_callbacks_; |
98 OriginsForHostCallbackMap pending_origins_for_host_callbacks_; | 99 OriginsForHostCallbackMap pending_origins_for_host_callbacks_; |
99 | 100 |
100 DISALLOW_COPY_AND_ASSIGN(FileSystemQuotaClient); | 101 DISALLOW_COPY_AND_ASSIGN(FileSystemQuotaClient); |
101 }; | 102 }; |
102 | 103 |
103 } // namespace fileapi | 104 } // namespace fileapi |
104 | 105 |
105 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_H_ | 106 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_QUOTA_CLIENT_H_ |
OLD | NEW |