leimy@
Could you please review this?
Thank you.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
grt@ Could you please review following files:
Thank you.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
//components/sqlite_vfs lgtm
case Client::kHttpCache:could/should this be `kSharedCacheIsolated` (and `".SharedCacheIsolated"` below) to match the tag used for the database? this is the pattern used for `CodeCache` and `ShaderCache`.
"//components/sqlite_vfs:pending_file_set",not needed -- this is in the `public_deps` of `//components/sqlite_vfs`
<variant name="Test"/>while you're here, could you remove this line for `"Test"`? it's not used in production code, so having it here just adds a useless item in the uma dashboard. thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
could/should this be `kSharedCacheIsolated` (and `".SharedCacheIsolated"` below) to match the tag used for the database? this is the pattern used for `CodeCache` and `ShaderCache`.
Done
not needed -- this is in the `public_deps` of `//components/sqlite_vfs`
Done
while you're here, could you remove this line for `"Test"`? it's not used in production code, so having it here just adds a useless item in the uma dashboard. thanks!
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Could you please review tools/metrics/histograms/metadata/sql/histograms.xml?
Thank you.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
[](auto) { return nullptr; });What is the `auto` in the argument list? Why is it not appearing in the next `ASSIGN_OR_RETURN`?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
[](auto) { return nullptr; });What is the `auto` in the argument list? Why is it not appearing in the next `ASSIGN_OR_RETURN`?
MakePendingFileSet() returns base::expected<PendingFileSet, FileSetError> , so ASSIGN_OR_RETURN passes the error object to the lambda.
On the other hand, SqliteVfsFileSet::Bind() returns std::optional<SqliteVfsFileSet> , which doesn't have an error object, so the lambda takes no arguments.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
net/disk_cache/sql: Add skeleton SqlSharedCacheIsolatedDatabase
Add the initial skeleton of SqlSharedCacheIsolatedDatabase to handle
schema creation and initialization for the SQL shared cache backend.
Currently implements Init() and verifies database creation via
sqlite_vfs.
OBSOLETE_HISTOGRAMS=Deleted `SandboxedVfs.*.Test` histograms are used only in tests. So they are useless in the uma dashboard.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |