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

Unified Diff: content/browser/media/media_browsertest.cc

Issue 12213066: Use base namespace for FilePath in content/browser (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
Index: content/browser/media/media_browsertest.cc
diff --git a/content/browser/media/media_browsertest.cc b/content/browser/media/media_browsertest.cc
index abbcdcc34eb48d3c39e23dac5384cf6623ddd0c1..9e270fe4131989c0ae67713d751ab64b8919a3b5 100644
--- a/content/browser/media/media_browsertest.cc
+++ b/content/browser/media/media_browsertest.cc
@@ -36,7 +36,7 @@ class MediaTest : public testing::WithParamInterface<bool>,
// Run specified color format test with the expected result.
void RunColorFormatTest(const char* media_file, const char* expected) {
- FilePath test_file_path = GetTestFilePath("media", "blackwhite.html");
+ base::FilePath test_file_path = GetTestFilePath("media", "blackwhite.html");
RunTest(GetFileUrlWithQuery(test_file_path, media_file), expected);
}
@@ -53,7 +53,7 @@ class MediaTest : public testing::WithParamInterface<bool>,
gurl = test_server()->GetURL(
base::StringPrintf("files/media/player.html?%s=%s", tag, media_file));
} else {
- FilePath test_file_path = GetTestFilePath("media", "player.html");
+ base::FilePath test_file_path = GetTestFilePath("media", "player.html");
gurl = GetFileUrlWithQuery(
test_file_path, base::StringPrintf("%s=%s", tag, media_file));
}
@@ -171,7 +171,7 @@ INSTANTIATE_TEST_CASE_P(Http, MediaTest, ::testing::Values(true));
class MediaLayoutTest : public InProcessBrowserLayoutTest {
protected:
MediaLayoutTest() : InProcessBrowserLayoutTest(
- FilePath(), FilePath().AppendASCII("media")) {
+ base::FilePath(), base::FilePath().AppendASCII("media")) {
}
virtual ~MediaLayoutTest() {}
};
« no previous file with comments | « content/browser/media/encrypted_media_browsertest.cc ('k') | content/browser/mime_registry_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698