Index: chrome/browser/file_system/file_system_host_context.h |
diff --git a/chrome/browser/file_system/file_system_host_context.h b/chrome/browser/file_system/file_system_host_context.h |
index 592ccd6126fb5fdd3fcd87469a2cfb51d273e27b..e651a43bf2e2cb29e41622f123679f190e1b847e 100644 |
--- a/chrome/browser/file_system/file_system_host_context.h |
+++ b/chrome/browser/file_system/file_system_host_context.h |
@@ -8,8 +8,9 @@ |
#include "base/file_path.h" |
#include "base/ref_counted.h" |
#include "base/scoped_ptr.h" |
-#include "googleurl/src/gurl.h" |
-#include "third_party/WebKit/WebKit/chromium/public/WebFileSystem.h" |
+#include "webkit/fileapi/file_system_types.h" |
+ |
+class GURL; |
// This is owned by profile and shared by all the FileSystemDispatcherHost |
// that shared by the same profile. |
@@ -23,11 +24,10 @@ class FileSystemHostContext |
// Returns the root path and name for the file system specified by given |
// |origin_url| and |type|. Returns true if the file system is available |
// for the profile and |root_path| and |name| are filled successfully. |
- bool GetFileSystemRootPath( |
- const GURL& origin_url, |
- WebKit::WebFileSystem::Type type, |
- FilePath* root_path, |
- std::string* name) const; |
+ bool GetFileSystemRootPath(const GURL& origin_url, |
+ fileapi::FileSystemType type, |
+ FilePath* root_path, |
+ std::string* name) const; |
// Check if the given |path| is in the FileSystem base directory. |
bool CheckValidFileSystemPath(const FilePath& path) const; |