diff options
author | Alex Vakulenko <avakulenko@google.com> | 2015-10-13 09:27:13 -0700 |
---|---|---|
committer | Alex Vakulenko <avakulenko@google.com> | 2015-10-13 09:44:07 -0700 |
commit | 3f39d5cc753905874d8d93bef94f857b8808f19e (patch) | |
tree | 09c75380469065d508a1a59e27e4a4dd5b28763d /chrome_browser_proxy_resolver_unittest.cc | |
parent | 25fbdf83064c78dfb4d9143be25f080ee2c56730 (diff) |
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
Diffstat (limited to 'chrome_browser_proxy_resolver_unittest.cc')
-rw-r--r-- | chrome_browser_proxy_resolver_unittest.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome_browser_proxy_resolver_unittest.cc b/chrome_browser_proxy_resolver_unittest.cc index d0a92894..7a4de3d2 100644 --- a/chrome_browser_proxy_resolver_unittest.cc +++ b/chrome_browser_proxy_resolver_unittest.cc @@ -23,8 +23,8 @@ #include <gtest/gtest.h> #include <base/bind.h> -#include <chromeos/make_unique_ptr.h> -#include <chromeos/message_loops/fake_message_loop.h> +#include <brillo/make_unique_ptr.h> +#include <brillo/message_loops/fake_message_loop.h> #include "libcros/dbus-proxies.h" #include "libcros/dbus-proxy-mocks.h" @@ -33,7 +33,7 @@ using ::testing::Return; using ::testing::StrEq; using ::testing::_; -using chromeos::MessageLoop; +using brillo::MessageLoop; using org::chromium::LibCrosServiceInterfaceProxyMock; using org::chromium::UpdateEngineLibcrosProxyResolvedInterfaceProxyMock; using std::deque; @@ -49,8 +49,8 @@ class ChromeBrowserProxyResolverTest : public ::testing::Test { ue_proxy_resolved_interface_mock_( new UpdateEngineLibcrosProxyResolvedInterfaceProxyMock()), libcros_proxy_( - chromeos::make_unique_ptr(service_interface_mock_), - chromeos::make_unique_ptr(ue_proxy_resolved_interface_mock_)) {} + brillo::make_unique_ptr(service_interface_mock_), + brillo::make_unique_ptr(ue_proxy_resolved_interface_mock_)) {} void SetUp() override { loop_.SetAsCurrent(); @@ -78,7 +78,7 @@ class ChromeBrowserProxyResolverTest : public ::testing::Test { void RunTest(bool chrome_replies, bool chrome_alive); private: - chromeos::FakeMessageLoop loop_{nullptr}; + brillo::FakeMessageLoop loop_{nullptr}; // Local pointers to the mocks. The instances are owned by the // |libcros_proxy_|. |