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/filesystem_verifier_action.h b/filesystem_verifier_action.h
index bfcac43..ad9f13b 100644
--- a/filesystem_verifier_action.h
+++ b/filesystem_verifier_action.h
@@ -23,7 +23,7 @@
#include <string>
#include <vector>
-#include <chromeos/streams/stream.h>
+#include <brillo/streams/stream.h>
#include <gtest/gtest_prod.h> // for FRIEND_TEST
#include "update_engine/action.h"
@@ -80,7 +80,7 @@
// Called from the main loop when a single read from |src_stream_| succeeds or
// fails, calling OnReadDoneCallback() and OnReadErrorCallback() respectively.
void OnReadDoneCallback(size_t bytes_read);
- void OnReadErrorCallback(const chromeos::Error* error);
+ void OnReadErrorCallback(const brillo::Error* error);
// When the read is done, finalize the hash checking of the current partition
// and continue checking the next one.
@@ -102,10 +102,10 @@
size_t partition_index_{0};
// If not null, the FileStream used to read from the device.
- chromeos::StreamPtr src_stream_;
+ brillo::StreamPtr src_stream_;
// Buffer for storing data we read.
- chromeos::Blob buffer_;
+ brillo::Blob buffer_;
bool read_done_{false}; // true if reached EOF on the input stream.
bool cancelled_{false}; // true if the action has been cancelled.