| Index: chrome/browser/renderer_host/pepper/pepper_isolated_file_system_message_filter.cc
|
| diff --git a/chrome/browser/renderer_host/pepper/pepper_isolated_file_system_message_filter.cc b/chrome/browser/renderer_host/pepper/pepper_isolated_file_system_message_filter.cc
|
| index 78521326ff8e711ef2cc0b97b8c9e6bb7267ccfd..380c58e5a847bcf6e301f952e7aa9adda75d6735 100644
|
| --- a/chrome/browser/renderer_host/pepper/pepper_isolated_file_system_message_filter.cc
|
| +++ b/chrome/browser/renderer_host/pepper/pepper_isolated_file_system_message_filter.cc
|
| @@ -24,7 +24,7 @@
|
| #include "ppapi/host/ppapi_host.h"
|
| #include "ppapi/proxy/ppapi_messages.h"
|
| #include "ppapi/shared_impl/file_system_util.h"
|
| -#include "webkit/browser/fileapi/isolated_context.h"
|
| +#include "storage/browser/fileapi/isolated_context.h"
|
|
|
| namespace chrome {
|
|
|
| @@ -115,8 +115,8 @@ std::string PepperIsolatedFileSystemMessageFilter::CreateCrxFileSystem(
|
|
|
| // First level directory for isolated filesystem to lookup.
|
| std::string kFirstLevelDirectory("crxfs");
|
| - return fileapi::IsolatedContext::GetInstance()->RegisterFileSystemForPath(
|
| - fileapi::kFileSystemTypeNativeLocal,
|
| + return storage::IsolatedContext::GetInstance()->RegisterFileSystemForPath(
|
| + storage::kFileSystemTypeNativeLocal,
|
| std::string(),
|
| extension->path(),
|
| &kFirstLevelDirectory);
|
| @@ -185,8 +185,8 @@ int32_t PepperIsolatedFileSystemMessageFilter::OpenPluginPrivateFileSystem(
|
| const std::string& root_name = ppapi::IsolatedFileSystemTypeToRootName(
|
| PP_ISOLATEDFILESYSTEMTYPE_PRIVATE_PLUGINPRIVATE);
|
| const std::string& fsid =
|
| - fileapi::IsolatedContext::GetInstance()->RegisterFileSystemForVirtualPath(
|
| - fileapi::kFileSystemTypePluginPrivate, root_name, base::FilePath());
|
| + storage::IsolatedContext::GetInstance()->RegisterFileSystemForVirtualPath(
|
| + storage::kFileSystemTypePluginPrivate, root_name, base::FilePath());
|
|
|
| // Grant full access of isolated filesystem to renderer process.
|
| content::ChildProcessSecurityPolicy* policy =
|
|
|