Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: chrome/browser/file_system/file_system_host_context.h

Issue 3394003: Add Worker support for FileSystem API. (Closed)
Patch Set: '' Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
« no previous file with comments | « chrome/browser/file_system/file_system_dispatcher_host.cc ('k') | chrome/browser/file_system/file_system_host_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698