diff options
Diffstat (limited to 'view/sharedcache/core/SlideInfo.h')
| -rw-r--r-- | view/sharedcache/core/SlideInfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/sharedcache/core/SlideInfo.h b/view/sharedcache/core/SlideInfo.h index bc165589..75134985 100644 --- a/view/sharedcache/core/SlideInfo.h +++ b/view/sharedcache/core/SlideInfo.h @@ -33,10 +33,10 @@ class SlideInfoProcessor public: explicit SlideInfoProcessor(uint64_t baseAddress); - std::vector<SlideMappingInfo> ReadEntryInfo(VirtualMemory& vm, const CacheEntry& entry) const; + std::vector<SlideMappingInfo> ReadEntryInfo(const MappedFileAccessor& accessor, const CacheEntry& entry) const; // Write the slide information back to the entries memory mapped regions. - void ApplyMappings(VirtualMemory& vm, const std::vector<SlideMappingInfo>& mappings); + void ApplyMappings(MappedFileAccessor& accessor, const std::vector<SlideMappingInfo>& mappings) const; - void ProcessEntry(VirtualMemory& vm, const CacheEntry& entry); + std::vector<SlideMappingInfo> ProcessEntry(MappedFileAccessor& accessor, const CacheEntry& entry) const; }; |
