Merge revision 1104 change:

- Fix Mac compile error.

git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1364@1105 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2013-02-22 18:01:05 +00:00
parent 1c7e9a7218
commit be0f78b229

View File

@ -170,9 +170,9 @@ class DownloadTestHandler : public TestHandler {
EXPECT_EQ(static_cast<int64>(sizeof(kTestContent)-1),
download_item->GetTotalBytes());
EXPECT_EQ(0LL, download_item->GetReceivedBytes());
EXPECT_EQ(0L, download_item->GetFullPath().length());
EXPECT_EQ(0UL, download_item->GetFullPath().length());
EXPECT_STREQ(kTestDownloadUrl, download_item->GetURL().ToString().c_str());
EXPECT_EQ(0L, download_item->GetSuggestedFileName().length());
EXPECT_EQ(0UL, download_item->GetSuggestedFileName().length());
EXPECT_STREQ(kTestContentDisposition,
download_item->GetContentDisposition().ToString().c_str());
EXPECT_STREQ(kTestMimeType, download_item->GetMimeType().ToString().c_str());