update_engine: Rename "chromeos" -> "brillo" in include paths and namespaces
libchromeos is transitioning to libbrillo and chromeos namespaces
and include directory is changing to brillo.
Bug: 24872993
Change-Id: I770659a95be380a50fe3b2ba9f91d65818f40945
diff --git a/bzip_extent_writer.cc b/bzip_extent_writer.cc
index 5f3afe9..4fe7148 100644
--- a/bzip_extent_writer.cc
+++ b/bzip_extent_writer.cc
@@ -21,7 +21,7 @@
namespace chromeos_update_engine {
namespace {
-const chromeos::Blob::size_type kOutputBufferLength = 16 * 1024;
+const brillo::Blob::size_type kOutputBufferLength = 16 * 1024;
}
bool BzipExtentWriter::Init(FileDescriptorPtr fd,
@@ -38,7 +38,7 @@
}
bool BzipExtentWriter::Write(const void* bytes, size_t count) {
- chromeos::Blob output_buffer(kOutputBufferLength);
+ brillo::Blob output_buffer(kOutputBufferLength);
// Copy the input data into |input_buffer_| only if |input_buffer_| already
// contains unconsumed data. Otherwise, process the data directly from the
@@ -75,7 +75,7 @@
// Store unconsumed data (if any) in |input_buffer_|.
if (stream_.avail_in || !input_buffer_.empty()) {
- chromeos::Blob new_input_buffer(input_end - stream_.avail_in, input_end);
+ brillo::Blob new_input_buffer(input_end - stream_.avail_in, input_end);
new_input_buffer.swap(input_buffer_);
}