
Since https://crrev.com/c/6330348, some utils in third_party/abseil-cpp/absl/types/variant.h and and third_party/abseil-cpp/absl/utility/utility.h are only aliases for their std counterparts. This CL migrates code to use std:: directly. Bug: 40242126 Change-Id: I3086a9337633c3e5857dc267daf55385f6d5456a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6368856 Reviewed-by: Dave Tapuska <dtapuska@chromium.org> Owners-Override: Dave Tapuska <dtapuska@chromium.org> Cr-Commit-Position: refs/heads/main@{#1434357}
File System Access API
This directory contains part of the browser side implementation of the File System Access API.
This specification for API is split across two repositories:
- https://github.com/whatwg/fs/, which specifies features available within the
Origin Private File System, including the
SyncAccessHandle
API, and - https://wicg.github.io/file-system-access/, which additionally specifies
features allowing users to interact with their local file system, primarily
via the
show*Picker()
APIs.
Related directories
//storage/browser/file_system/
contains the
backend this API is built on top of,
blink/renderer/modules/file_system_access
contains the renderer side implementation and
blink/public/mojom/file_system_access
contains the mojom interfaces for these APIs.