Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2889)

Unified Diff: content/shell/android/browsertests_apk/content_browser_tests_android.cc

Issue 12286020: Replace FilePath with base::FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | content/shell/paths_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | content/shell/paths_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698