Index: webkit/browser/fileapi/test_file_set.h |
diff --git a/webkit/browser/fileapi/test_file_set.h b/webkit/browser/fileapi/test_file_set.h |
deleted file mode 100644 |
index eb44521357a2908a3370ea30af6d941153e2e918..0000000000000000000000000000000000000000 |
--- a/webkit/browser/fileapi/test_file_set.h |
+++ /dev/null |
@@ -1,42 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef WEBKIT_BROWSER_FILEAPI_TEST_FILE_SET_H_ |
-#define WEBKIT_BROWSER_FILEAPI_TEST_FILE_SET_H_ |
- |
-#include <set> |
- |
-#include "base/files/file_path.h" |
- |
-// Common test data structures and test cases. |
- |
-namespace fileapi { |
- |
-class FileSystemFileUtil; |
- |
-namespace test { |
- |
-struct TestCaseRecord { |
- bool is_directory; |
- const base::FilePath::CharType path[64]; |
- int64 data_file_size; |
-}; |
- |
-extern const TestCaseRecord kRegularTestCases[]; |
-extern const size_t kRegularTestCaseSize; |
- |
-size_t GetRegularTestCaseSize(); |
- |
-// Creates one file or directory specified by |record|. |
-void SetUpOneTestCase(const base::FilePath& root_path, |
- const TestCaseRecord& record); |
- |
-// Creates the files and directories specified in kRegularTestCases. |
-void SetUpRegularTestCases(const base::FilePath& root_path); |
- |
-} // namespace test |
- |
-} // namespace fileapi |
- |
-#endif // WEBKIT_BROWSER_FILEAPI_TEST_FILE_SET_H_ |