| Index: chrome/browser/extensions/api/developer_private/developer_private_api.h
|
| diff --git a/chrome/browser/extensions/api/developer_private/developer_private_api.h b/chrome/browser/extensions/api/developer_private/developer_private_api.h
|
| index 6525bd4cb5d9dd57118d21624e62e55f1ba7f52d..1e27bafd113a106a1c6ab1a171929c785876da80 100644
|
| --- a/chrome/browser/extensions/api/developer_private/developer_private_api.h
|
| +++ b/chrome/browser/extensions/api/developer_private/developer_private_api.h
|
| @@ -24,8 +24,8 @@
|
| #include "extensions/browser/event_router.h"
|
| #include "extensions/browser/extension_registry_observer.h"
|
| #include "ui/shell_dialogs/select_file_dialog.h"
|
| -#include "webkit/browser/fileapi/file_system_context.h"
|
| -#include "webkit/browser/fileapi/file_system_operation.h"
|
| +#include "storage/browser/fileapi/file_system_context.h"
|
| +#include "storage/browser/fileapi/file_system_operation.h"
|
|
|
| class Profile;
|
|
|
| @@ -412,7 +412,7 @@ class DeveloperPrivateLoadDirectoryFunction
|
| // ExtensionFunction:
|
| virtual bool RunAsync() OVERRIDE;
|
|
|
| - bool LoadByFileSystemAPI(const fileapi::FileSystemURL& directory_url);
|
| + bool LoadByFileSystemAPI(const storage::FileSystemURL& directory_url);
|
|
|
| void ClearExistingDirectoryContent(const base::FilePath& project_path);
|
|
|
| @@ -423,7 +423,7 @@ class DeveloperPrivateLoadDirectoryFunction
|
| const base::FilePath& project_path,
|
| const base::FilePath& destination_path,
|
| base::File::Error result,
|
| - const fileapi::FileSystemOperation::FileEntryList& file_list,
|
| + const storage::FileSystemOperation::FileEntryList& file_list,
|
| bool has_more);
|
|
|
| void SnapshotFileCallback(
|
| @@ -431,14 +431,14 @@ class DeveloperPrivateLoadDirectoryFunction
|
| base::File::Error result,
|
| const base::File::Info& file_info,
|
| const base::FilePath& platform_path,
|
| - const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref);
|
| + const scoped_refptr<storage::ShareableFileReference>& file_ref);
|
|
|
| void CopyFile(const base::FilePath& src_path,
|
| const base::FilePath& dest_path);
|
|
|
| void Load();
|
|
|
| - scoped_refptr<fileapi::FileSystemContext> context_;
|
| + scoped_refptr<storage::FileSystemContext> context_;
|
|
|
| // syncfs url representing the root of the folder to be copied.
|
| std::string project_base_url_;
|
|
|