Index: content/shell/android/browsertests_apk/content_browser_tests_android.cc |
diff --git a/content/shell/android/browsertests_apk/content_browser_tests_android.cc b/content/shell/android/browsertests_apk/content_browser_tests_android.cc |
index 165f8042b9aee525c52d0d31103012c421f75e21..9a2fd46615726cc4fe50919fcab15767095bd0a3 100644 |
--- a/content/shell/android/browsertests_apk/content_browser_tests_android.cc |
+++ b/content/shell/android/browsertests_apk/content_browser_tests_android.cc |
@@ -73,8 +73,9 @@ static void RunTests(JNIEnv* env, |
CommandLine(argc, &argv[0]), false); |
// Create fifo and redirect stdout and stderr to it. |
- FilePath files_dir(base::android::ConvertJavaStringToUTF8(env, jfiles_dir)); |
- FilePath fifo_path(files_dir.Append(FilePath("test.fifo"))); |
+ base::FilePath files_dir( |
+ base::android::ConvertJavaStringToUTF8(env, jfiles_dir)); |
+ base::FilePath fifo_path(files_dir.Append(base::FilePath("test.fifo"))); |
CreateFIFO(fifo_path.value().c_str()); |
RedirectStream(stdout, fifo_path.value().c_str(), "w"); |
dup2(STDOUT_FILENO, STDERR_FILENO); |