Index: chrome/browser/download/download_browsertest.cc |
diff --git a/chrome/browser/download/download_browsertest.cc b/chrome/browser/download/download_browsertest.cc |
index f9fe43d33065129cf18c28b022f13d7697aa7e84..f20281db8220005872a35f7d5ce8ccc440f84f19 100644 |
--- a/chrome/browser/download/download_browsertest.cc |
+++ b/chrome/browser/download/download_browsertest.cc |
@@ -1950,11 +1950,11 @@ IN_PROC_BROWSER_TEST_F(DownloadTest, MAYBE_DownloadTest_History) { |
EXPECT_EQ(download_url, item->GetURL()); |
// The following are set by download-test1.lib.mock-http-headers. |
std::string etag = item->GetETag(); |
- TrimWhitespaceASCII(etag, TRIM_ALL, &etag); |
+ base::TrimWhitespaceASCII(etag, base::TRIM_ALL, &etag); |
EXPECT_EQ("abracadabra", etag); |
std::string last_modified = item->GetLastModifiedTime(); |
- TrimWhitespaceASCII(last_modified, TRIM_ALL, &last_modified); |
+ base::TrimWhitespaceASCII(last_modified, base::TRIM_ALL, &last_modified); |
EXPECT_EQ("Mon, 13 Nov 2006 20:31:09 GMT", last_modified); |
} |