OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CONTENT_PUBLIC_TEST_ASYNC_FILE_TEST_HELPER_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_ASYNC_FILE_TEST_HELPER_H_ |
6 #define CONTENT_PUBLIC_TEST_ASYNC_FILE_TEST_HELPER_H_ | 6 #define CONTENT_PUBLIC_TEST_ASYNC_FILE_TEST_HELPER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "storage/browser/fileapi/file_system_operation.h" |
9 #include "storage/common/fileapi/file_system_types.h" | 10 #include "storage/common/fileapi/file_system_types.h" |
10 #include "storage/common/quota/quota_status_code.h" | 11 #include "storage/common/quota/quota_status_code.h" |
11 #include "webkit/browser/fileapi/file_system_operation.h" | |
12 | 12 |
13 namespace storage { | 13 namespace storage { |
14 class QuotaManager; | 14 class QuotaManager; |
15 } | 15 } |
16 | 16 |
17 namespace storage { | 17 namespace storage { |
18 class FileSystemContext; | 18 class FileSystemContext; |
19 class FileSystemURL; | 19 class FileSystemURL; |
20 } | 20 } |
21 | 21 |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 storage::QuotaManager* quota_manager, | 103 storage::QuotaManager* quota_manager, |
104 const GURL& origin, | 104 const GURL& origin, |
105 storage::FileSystemType type, | 105 storage::FileSystemType type, |
106 int64* usage, | 106 int64* usage, |
107 int64* quota); | 107 int64* quota); |
108 }; | 108 }; |
109 | 109 |
110 } // namespace content | 110 } // namespace content |
111 | 111 |
112 #endif // CONTENT_PUBLIC_TEST_ASYNC_FILE_TEST_HELPER_H_ | 112 #endif // CONTENT_PUBLIC_TEST_ASYNC_FILE_TEST_HELPER_H_ |
OLD | NEW |