| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_ | 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_ |
| 6 #define WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_ | 6 #define WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_ |
| 7 | 7 |
| 8 #include <vector> | |
| 9 #include "base/file_util_proxy.h" | 8 #include "base/file_util_proxy.h" |
| 10 #include "base/id_map.h" | 9 #include "base/id_map.h" |
| 11 #include "base/memory/scoped_temp_dir.h" | |
| 12 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "base/scoped_temp_dir.h" |
| 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystem.h" |
| 14 #include "webkit/fileapi/file_system_types.h" | 13 #include "webkit/fileapi/file_system_types.h" |
| 14 #include <vector> |
| 15 | 15 |
| 16 namespace WebKit { | 16 namespace WebKit { |
| 17 class WebFileSystemCallbacks; | 17 class WebFileSystemCallbacks; |
| 18 class WebFrame; | 18 class WebFrame; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace fileapi { | 21 namespace fileapi { |
| 22 class FileSystemContext; | 22 class FileSystemContext; |
| 23 class FileSystemOperation; | 23 class FileSystemOperation; |
| 24 } | 24 } |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 | 75 |
| 76 // A temporary directory for FileSystem API. | 76 // A temporary directory for FileSystem API. |
| 77 ScopedTempDir file_system_dir_; | 77 ScopedTempDir file_system_dir_; |
| 78 | 78 |
| 79 scoped_refptr<fileapi::FileSystemContext> file_system_context_; | 79 scoped_refptr<fileapi::FileSystemContext> file_system_context_; |
| 80 | 80 |
| 81 DISALLOW_COPY_AND_ASSIGN(SimpleFileSystem); | 81 DISALLOW_COPY_AND_ASSIGN(SimpleFileSystem); |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 #endif // WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_ | 84 #endif // WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_ |
| OLD | NEW |