| 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" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
| 15 #include "webkit/fileapi/cross_file_util_helper.h" | |
| 16 #include "webkit/fileapi/file_system_path.h" | 15 #include "webkit/fileapi/file_system_path.h" |
| 17 #include "webkit/fileapi/file_system_types.h" | 16 #include "webkit/fileapi/file_system_types.h" |
| 18 #include "webkit/fileapi/file_system_util.h" | 17 #include "webkit/fileapi/file_system_util.h" |
| 19 #include "webkit/quota/quota_types.h" | 18 #include "webkit/quota/quota_types.h" |
| 20 | 19 |
| 21 namespace quota { | 20 namespace quota { |
| 22 class QuotaManagerProxy; | 21 class QuotaManagerProxy; |
| 23 } | 22 } |
| 24 | 23 |
| 25 class FilePath; | 24 class FilePath; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 scoped_refptr<FileSystemContext> file_system_context_; | 97 scoped_refptr<FileSystemContext> file_system_context_; |
| 99 const GURL origin_; | 98 const GURL origin_; |
| 100 const FileSystemType type_; | 99 const FileSystemType type_; |
| 101 FileSystemFileUtil* file_util_; | 100 FileSystemFileUtil* file_util_; |
| 102 int64 initial_usage_size_; | 101 int64 initial_usage_size_; |
| 103 }; | 102 }; |
| 104 | 103 |
| 105 } // namespace fileapi | 104 } // namespace fileapi |
| 106 | 105 |
| 107 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TEST_HELPER_H_ | 106 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_TEST_HELPER_H_ |
| OLD | NEW |