Index: content/browser/download/mhtml_generation_browsertest.cc |
diff --git a/content/browser/download/mhtml_generation_browsertest.cc b/content/browser/download/mhtml_generation_browsertest.cc |
index 75f7aaf32bc88d8d6a74a73d4efec12e7407e7ed..534a53019916bf8b879915c2f626b094ff5ca2ce 100644 |
--- a/content/browser/download/mhtml_generation_browsertest.cc |
+++ b/content/browser/download/mhtml_generation_browsertest.cc |
@@ -21,7 +21,7 @@ class MHTMLGenerationTest : public ContentBrowserTest { |
public: |
MHTMLGenerationTest() : mhtml_generated_(false), file_size_(0) {} |
- void MHTMLGenerated(const FilePath& path, int64 size) { |
+ void MHTMLGenerated(const base::FilePath& path, int64 size) { |
mhtml_generated_ = true; |
file_size_ = size; |
MessageLoopForUI::current()->Quit(); |
@@ -50,7 +50,7 @@ class MHTMLGenerationTest : public ContentBrowserTest { |
IN_PROC_BROWSER_TEST_F(MHTMLGenerationTest, GenerateMHTML) { |
ASSERT_TRUE(test_server()->Start()); |
- FilePath path(temp_dir_.path()); |
+ base::FilePath path(temp_dir_.path()); |
path = path.Append(FILE_PATH_LITERAL("test.mht")); |
NavigateToURL(shell(), test_server()->GetURL("files/simple_page.html")); |