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

Unified Diff: media/test/ffmpeg_tests/ffmpeg_tests.cc

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (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 | « media/filters/pipeline_integration_test_base.cc ('k') | media/tools/demuxer_bench/demuxer_bench.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/test/ffmpeg_tests/ffmpeg_tests.cc
diff --git a/media/test/ffmpeg_tests/ffmpeg_tests.cc b/media/test/ffmpeg_tests/ffmpeg_tests.cc
index 262d532e76e79b8e78fed38ed6014a6a7758da92..b84b3fdc95777889a01a9d276f5a6a3f060bdbcf 100644
--- a/media/test/ffmpeg_tests/ffmpeg_tests.cc
+++ b/media/test/ffmpeg_tests/ffmpeg_tests.cc
@@ -83,7 +83,7 @@ int main(int argc, const char** argv) {
}
// Initialize our media library (try loading DLLs, etc.) before continuing.
- FilePath media_path;
+ base::FilePath media_path;
PathService::Get(base::DIR_MODULE, &media_path);
if (!media::InitializeMediaLibrary(media_path)) {
std::cerr << "Unable to initialize the media library.";
@@ -91,10 +91,10 @@ int main(int argc, const char** argv) {
}
// Retrieve command line options.
- FilePath in_path(filenames[0]);
- FilePath out_path;
+ base::FilePath in_path(filenames[0]);
+ base::FilePath out_path;
if (filenames.size() > 1)
- out_path = FilePath(filenames[1]);
+ out_path = base::FilePath(filenames[1]);
// Default flags that match Chrome defaults.
int video_threads = 2;
« no previous file with comments | « media/filters/pipeline_integration_test_base.cc ('k') | media/tools/demuxer_bench/demuxer_bench.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698