diff options
Diffstat (limited to 'net/http/http_transaction_unittest.cc')
-rw-r--r-- | net/http/http_transaction_unittest.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/http/http_transaction_unittest.cc b/net/http/http_transaction_unittest.cc index e22c398..4a0cef7 100644 --- a/net/http/http_transaction_unittest.cc +++ b/net/http/http_transaction_unittest.cc @@ -26,6 +26,7 @@ const MockTransaction kSimpleGET_Transaction = { net::LOAD_NORMAL, "HTTP/1.1 200 OK", "Cache-Control: max-age=10000\n", + base::Time(), "<html><body>Google Blah Blah</body></html>", TEST_MODE_NORMAL, NULL, @@ -39,6 +40,7 @@ const MockTransaction kSimplePOST_Transaction = { net::LOAD_NORMAL, "HTTP/1.1 200 OK", "", + base::Time(), "<html><body>Google Blah Blah</body></html>", TEST_MODE_NORMAL, NULL, @@ -53,6 +55,7 @@ const MockTransaction kTypicalGET_Transaction = { "HTTP/1.1 200 OK", "Date: Wed, 28 Nov 2007 09:40:09 GMT\n" "Last-Modified: Wed, 28 Nov 2007 00:40:09 GMT\n", + base::Time(), "<html><body>Google Blah Blah</body></html>", TEST_MODE_NORMAL, NULL, @@ -67,6 +70,7 @@ const MockTransaction kETagGET_Transaction = { "HTTP/1.1 200 OK", "Cache-Control: max-age=10000\n" "Etag: foopy\n", + base::Time(), "<html><body>Google Blah Blah</body></html>", TEST_MODE_NORMAL, NULL, @@ -80,6 +84,7 @@ const MockTransaction kRangeGET_Transaction = { net::LOAD_NORMAL, "HTTP/1.1 200 OK", "Cache-Control: max-age=10000\n", + base::Time(), "<html><body>Google Blah Blah</body></html>", TEST_MODE_NORMAL, NULL, |