Index: content/renderer/hyphenator/hyphenator_unittest.cc |
diff --git a/content/renderer/hyphenator/hyphenator_unittest.cc b/content/renderer/hyphenator/hyphenator_unittest.cc |
index b849929388a869adeb0177b1f95b14a10f044258..2d41503fc89d9d07028242d5fd294574903f0708 100644 |
--- a/content/renderer/hyphenator/hyphenator_unittest.cc |
+++ b/content/renderer/hyphenator/hyphenator_unittest.cc |
@@ -44,7 +44,7 @@ class MockListener : public IPC::Listener { |
// Open the default dictionary and call the OnControllMessageReceived |
// function with a HyphenatorMsg_SetDictionary message. |
- FilePath dictionary_path; |
+ base::FilePath dictionary_path; |
if (!PathService::Get(base::DIR_SOURCE_ROOT, &dictionary_path)) |
return false; |
dictionary_path = dictionary_path.AppendASCII("third_party"); |
@@ -84,7 +84,7 @@ class HyphenatorTest : public testing::Test { |
} |
bool Initialize() { |
- FilePath dictionary_path; |
+ base::FilePath dictionary_path; |
if (!PathService::Get(base::DIR_SOURCE_ROOT, &dictionary_path)) |
return false; |
dictionary_path = dictionary_path.AppendASCII("third_party"); |