Rename native_file_system -> file_system_access part 4/x.

Refactor content/public/browser and chrome/browser
All changes are find-and-replace unless called out in a comment.

Bug: 1110509
Change-Id: Ib46ed353865321413e49a56477a4a07b47034e93
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2602222
Commit-Queue: Austin Sullivan <[email protected]>
Reviewed-by: Daniel Rubery <[email protected]>
Reviewed-by: Avi Drissman <[email protected]>
Reviewed-by: Emily Stark <[email protected]>
Reviewed-by: Daniel Murphy <[email protected]>
Reviewed-by: David Roger <[email protected]>
Reviewed-by: Marijn Kruisselbrink <[email protected]>
Cr-Commit-Position: refs/heads/master@{#843306}
diff --git a/content/browser/renderer_host/drop_data_util.cc b/content/browser/renderer_host/drop_data_util.cc
index eb507e8..17602bc 100644
--- a/content/browser/renderer_host/drop_data_util.cc
+++ b/content/browser/renderer_host/drop_data_util.cc
@@ -33,7 +33,7 @@
 // the correct file system backend. This method checks if this is the case, and
 // updates `entry_path` to the path that should be used by the native file
 // system implementation.
-content::NativeFileSystemEntryFactory::PathType MaybeRemapPath(
+content::FileSystemAccessEntryFactory::PathType MaybeRemapPath(
     base::FilePath* entry_path) {
 #if BUILDFLAG(IS_CHROMEOS_ASH)
   base::FilePath virtual_path;
@@ -41,10 +41,10 @@
       storage::ExternalMountPoints::GetSystemInstance();
   if (external_mount_points->GetVirtualPath(*entry_path, &virtual_path)) {
     *entry_path = std::move(virtual_path);
-    return content::NativeFileSystemEntryFactory::PathType::kExternal;
+    return content::FileSystemAccessEntryFactory::PathType::kExternal;
   }
 #endif
-  return content::NativeFileSystemEntryFactory::PathType::kLocal;
+  return content::FileSystemAccessEntryFactory::PathType::kLocal;
 }
 
 }  // namespace