Index: base/test/test_support_android.cc |
diff --git a/base/test/test_support_android.cc b/base/test/test_support_android.cc |
index e38a897f1291fe4101db127fbf4009234d81a535..b87c07300196573599340dbca32e1cbc8ed0fe3a 100644 |
--- a/base/test/test_support_android.cc |
+++ b/base/test/test_support_android.cc |
@@ -139,7 +139,7 @@ base::MessagePump* CreateMessagePumpForUIStub() { |
}; |
// Provides the test path for DIR_MODULE and DIR_ANDROID_APP_DATA. |
-bool GetTestProviderPath(int key, FilePath* result) { |
+bool GetTestProviderPath(int key, base::FilePath* result) { |
switch (key) { |
case base::DIR_MODULE: { |
return base::android::GetExternalStorageDirectory(result); |
@@ -154,7 +154,7 @@ bool GetTestProviderPath(int key, FilePath* result) { |
} |
void InitPathProvider(int key) { |
- FilePath path; |
+ base::FilePath path; |
// If failed to override the key, that means the way has not been registered. |
if (GetTestProviderPath(key, &path) && !PathService::Override(key, path)) |
PathService::RegisterProvider(&GetTestProviderPath, key, key + 1); |