summaryrefslogtreecommitdiff
path: root/payload_generator/filesystem_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'payload_generator/filesystem_interface.h')
-rw-r--r--payload_generator/filesystem_interface.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/payload_generator/filesystem_interface.h b/payload_generator/filesystem_interface.h
index 866c46bb..b1506e44 100644
--- a/payload_generator/filesystem_interface.h
+++ b/payload_generator/filesystem_interface.h
@@ -33,6 +33,7 @@
#include <base/macros.h>
#include <brillo/key_value_store.h>
+#include <puffin/utils.h>
#include "update_engine/update_metadata.pb.h"
@@ -62,6 +63,10 @@ class FilesystemInterface {
// between 0 and GetBlockCount() - 1. The blocks are encoded in extents,
// indicating the starting block, and the number of consecutive blocks.
std::vector<Extent> extents;
+
+ // All the deflate locations in the file. These locations are not relative
+ // to the extents. They are relative to the file system itself.
+ std::vector<puffin::BitExtent> deflates;
};
virtual ~FilesystemInterface() = default;