Index: remoting/protocol/authenticator_test_base.cc |
diff --git a/remoting/protocol/authenticator_test_base.cc b/remoting/protocol/authenticator_test_base.cc |
index 03da2c7e474167d1849072b935410c90de67757b..18450987f3f0559e79f491eda89cd4a47491cfe1 100644 |
--- a/remoting/protocol/authenticator_test_base.cc |
+++ b/remoting/protocol/authenticator_test_base.cc |
@@ -43,12 +43,12 @@ AuthenticatorTestBase::AuthenticatorTestBase() {} |
AuthenticatorTestBase::~AuthenticatorTestBase() {} |
void AuthenticatorTestBase::SetUp() { |
- FilePath certs_dir(net::GetTestCertsDirectory()); |
+ base::FilePath certs_dir(net::GetTestCertsDirectory()); |
- FilePath cert_path = certs_dir.AppendASCII("unittest.selfsigned.der"); |
+ base::FilePath cert_path = certs_dir.AppendASCII("unittest.selfsigned.der"); |
ASSERT_TRUE(file_util::ReadFileToString(cert_path, &host_cert_)); |
- FilePath key_path = certs_dir.AppendASCII("unittest.key.bin"); |
+ base::FilePath key_path = certs_dir.AppendASCII("unittest.key.bin"); |
std::string key_string; |
ASSERT_TRUE(file_util::ReadFileToString(key_path, &key_string)); |
std::vector<uint8> key_vector( |