mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-02 09:18:52 +00:00
Kernel: Rename FileBackedFS => FileBackedFileSystem
This commit is contained in:
parent
07c4c89297
commit
502bbacea0
Notes:
sideshowbarker
2024-07-18 09:22:10 +09:00
Author: https://github.com/awesomekling
Commit: 502bbacea0
8 changed files with 15 additions and 15 deletions
|
@ -64,8 +64,8 @@ public:
|
|||
|
||||
if (m_clean_list.is_empty()) {
|
||||
// Not a single clean entry! Flush writes and try again.
|
||||
// NOTE: We want to make sure we only call FileBackedFS flush here,
|
||||
// not some FileBackedFS subclass flush!
|
||||
// NOTE: We want to make sure we only call FileBackedFileSystem flush here,
|
||||
// not some FileBackedFileSystem subclass flush!
|
||||
m_fs.flush_writes_impl();
|
||||
return get(block_index);
|
||||
}
|
||||
|
@ -105,7 +105,7 @@ private:
|
|||
};
|
||||
|
||||
BlockBasedFS::BlockBasedFS(FileDescription& file_description)
|
||||
: FileBackedFS(file_description)
|
||||
: FileBackedFileSystem(file_description)
|
||||
{
|
||||
VERIFY(file_description.file().is_seekable());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue