X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fcontent%2Fbrowser%2Ffileapi%2Fbrowser_file_system_helper.h;h=de63da54435b7df7480ad160e46d2c7c3ff6b4b9;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=ad44ced5064a9574a4f621b9948b52d1b85bb462;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/content/browser/fileapi/browser_file_system_helper.h b/src/content/browser/fileapi/browser_file_system_helper.h index ad44ced..de63da5 100644 --- a/src/content/browser/fileapi/browser_file_system_helper.h +++ b/src/content/browser/fileapi/browser_file_system_helper.h @@ -7,9 +7,9 @@ #include "base/memory/ref_counted.h" #include "content/common/content_export.h" -#include "webkit/browser/fileapi/file_system_context.h" +#include "storage/browser/fileapi/file_system_context.h" -namespace fileapi { +namespace storage { class ExternalMountPoints; class FileSystemContext; class FileSystemURL; @@ -21,20 +21,19 @@ class BrowserContext; // Helper method that returns FileSystemContext constructed for // the browser process. -CONTENT_EXPORT scoped_refptr -CreateFileSystemContext( - BrowserContext* browser_context, - const base::FilePath& profile_path, - bool is_incognito, - quota::QuotaManagerProxy* quota_manager_proxy); +CONTENT_EXPORT scoped_refptr + CreateFileSystemContext(BrowserContext* browser_context, + const base::FilePath& profile_path, + bool is_incognito, + storage::QuotaManagerProxy* quota_manager_proxy); // Verifies that |url| is valid and has a registered backend in |context|. -CONTENT_EXPORT bool FileSystemURLIsValid(fileapi::FileSystemContext* context, - const fileapi::FileSystemURL& url); +CONTENT_EXPORT bool FileSystemURLIsValid(storage::FileSystemContext* context, + const storage::FileSystemURL& url); // Get the platform path from a file system URL. This needs to be called // on the FILE thread. -CONTENT_EXPORT void SyncGetPlatformPath(fileapi::FileSystemContext* context, +CONTENT_EXPORT void SyncGetPlatformPath(storage::FileSystemContext* context, int process_id, const GURL& path, base::FilePath* platform_path);