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/dbus_service_unittest.cc b/dbus_service_unittest.cc
index 824ea71..4ea7eec 100644
--- a/dbus_service_unittest.cc
+++ b/dbus_service_unittest.cc
@@ -19,14 +19,14 @@
#include <gtest/gtest.h>
#include <string>
-#include <chromeos/errors/error.h>
+#include <brillo/errors/error.h>
#include <policy/libpolicy.h>
#include <policy/mock_device_policy.h>
#include <update_engine/dbus-constants.h>
#include "update_engine/fake_system_state.h"
-using chromeos::errors::dbus::kDomain;
+using brillo::errors::dbus::kDomain;
using std::string;
using testing::Return;
using testing::SetArgumentPointee;
@@ -52,7 +52,7 @@
// Shortcut for fake_system_state_.mock_update_attempter().
MockUpdateAttempter* mock_update_attempter_;
- chromeos::ErrorPtr error_;
+ brillo::ErrorPtr error_;
UpdateEngineService dbus_service_;
};