Index: chrome/browser/download/download_ui_controller_unittest.cc |
diff --git a/chrome/browser/download/download_ui_controller_unittest.cc b/chrome/browser/download/download_ui_controller_unittest.cc |
index 0e458eb91584404afab08d3e7e027b4706db6ab3..f1be1c7613d7a2680477452e06c92748aae6278f 100644 |
--- a/chrome/browser/download/download_ui_controller_unittest.cc |
+++ b/chrome/browser/download/download_ui_controller_unittest.cc |
@@ -206,8 +206,12 @@ DownloadUIControllerTest::CreateMockInProgressDownload() { |
EXPECT_CALL(*item, GetBrowserContext()) |
.WillRepeatedly(Return(browser_context())); |
EXPECT_CALL(*item, GetId()).WillRepeatedly(Return(1)); |
- EXPECT_CALL(*item, GetTargetFilePath()).WillRepeatedly( |
- ReturnRefOfCopy(base::FilePath(FILE_PATH_LITERAL("foo")))); |
+ EXPECT_CALL(*item, GetGuid()) |
+ .WillRepeatedly( |
+ ReturnRefOfCopy(std::string("14CA04AF-ECEC-4B13-8829-817477EFAB83"))); |
+ EXPECT_CALL(*item, GetTargetFilePath()) |
+ .WillRepeatedly( |
+ ReturnRefOfCopy(base::FilePath(FILE_PATH_LITERAL("foo")))); |
EXPECT_CALL(*item, GetFullPath()).WillRepeatedly( |
ReturnRefOfCopy(base::FilePath(FILE_PATH_LITERAL("foo")))); |
EXPECT_CALL(*item, GetState()) |