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 733ea1f8daa069c8628cdf4752ccc4d3cf7b417a..e2e522f8033857f85ab70e9e81f395fd846290a2 100644 |
--- a/extensions/browser/api/runtime/runtime_api.cc |
+++ b/extensions/browser/api/runtime/runtime_api.cc |
@@ -528,7 +528,7 @@ RuntimeGetPackageDirectoryEntryFunction::Run() { |
std::string relative_path = kPackageDirectoryPath; |
base::FilePath path = extension_->path(); |
std::string filesystem_id = isolated_context->RegisterFileSystemForPath( |
- fileapi::kFileSystemTypeNativeLocal, path, &relative_path); |
+ fileapi::kFileSystemTypeNativeLocal, std::string(), path, &relative_path); |
int renderer_id = render_view_host_->GetProcess()->GetID(); |
content::ChildProcessSecurityPolicy* policy = |