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_TEST_HELPER_H_ | 5 #ifndef WEBKIT_FILEAPI_FILE_SYSTEM_TEST_HELPER_H_ |
6 #define WEBKIT_FILEAPI_FILE_SYSTEM_TEST_HELPER_H_ | 6 #define WEBKIT_FILEAPI_FILE_SYSTEM_TEST_HELPER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | |
14 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
15 #include "webkit/fileapi/file_system_path.h" | 14 #include "webkit/fileapi/file_system_path.h" |
16 #include "webkit/fileapi/file_system_types.h" | 15 #include "webkit/fileapi/file_system_types.h" |
17 #include "webkit/fileapi/file_system_util.h" | 16 #include "webkit/fileapi/file_system_util.h" |
18 #include "webkit/quota/quota_types.h" | 17 #include "webkit/quota/quota_types.h" |
19 | 18 |
20 namespace quota { | 19 namespace quota { |
21 class QuotaManagerProxy; | 20 class QuotaManagerProxy; |
22 } | 21 } |
23 | 22 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 scoped_refptr<FileSystemContext> file_system_context_; | 100 scoped_refptr<FileSystemContext> file_system_context_; |
102 const GURL origin_; | 101 const GURL origin_; |
103 const FileSystemType type_; | 102 const FileSystemType type_; |
104 FileSystemFileUtil* file_util_; | 103 FileSystemFileUtil* file_util_; |
105 int64 initial_usage_size_; | 104 int64 initial_usage_size_; |
106 }; | 105 }; |
107 | 106 |
108 } // namespace fileapi | 107 } // namespace fileapi |
109 | 108 |
110 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TEST_HELPER_H_ | 109 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TEST_HELPER_H_ |
OLD | NEW |