Index: extensions/browser/api/runtime/runtime_api.cc |
diff --git a/extensions/browser/api/runtime/runtime_api.cc b/extensions/browser/api/runtime/runtime_api.cc |
index 95ca66abd4efbb67bd208670d779a93d0184b2e6..d68decd3247f173ad389099f76e0ceb3bdf404e0 100644 |
--- a/extensions/browser/api/runtime/runtime_api.cc |
+++ b/extensions/browser/api/runtime/runtime_api.cc |
@@ -498,14 +498,14 @@ ExtensionFunction::ResponseAction RuntimeGetPlatformInfoFunction::Run() { |
ExtensionFunction::ResponseAction |
RuntimeGetPackageDirectoryEntryFunction::Run() { |
- fileapi::IsolatedContext* isolated_context = |
- fileapi::IsolatedContext::GetInstance(); |
+ storage::IsolatedContext* isolated_context = |
+ storage::IsolatedContext::GetInstance(); |
DCHECK(isolated_context); |
std::string relative_path = kPackageDirectoryPath; |
base::FilePath path = extension_->path(); |
std::string filesystem_id = isolated_context->RegisterFileSystemForPath( |
- fileapi::kFileSystemTypeNativeLocal, std::string(), path, &relative_path); |
+ storage::kFileSystemTypeNativeLocal, std::string(), path, &relative_path); |
int renderer_id = render_view_host_->GetProcess()->GetID(); |
content::ChildProcessSecurityPolicy* policy = |