| Index: net/http/http_transaction_test_util.cc
|
| diff --git a/net/http/http_transaction_test_util.cc b/net/http/http_transaction_test_util.cc
|
| index f3bbf98df3dd4acc4c260e08ebfd7c78946910ca..995400331ce47b3d175585f5d965ca6780fd0ddd 100644
|
| --- a/net/http/http_transaction_test_util.cc
|
| +++ b/net/http/http_transaction_test_util.cc
|
| @@ -61,6 +61,23 @@ const MockTransaction kSimplePOST_Transaction = {
|
| net::OK
|
| };
|
|
|
| +const MockTransaction kContentLocationPOST_Transaction = {
|
| + "http://www.example.com/edit",
|
| + "POST",
|
| + base::Time(),
|
| + "",
|
| + net::LOAD_NORMAL,
|
| + "HTTP/1.1 200 OK",
|
| + "Content-Location: http://www.example.com/~foo/bar.html"
|
| + "",
|
| + base::Time(),
|
| + "<html><body>Google Blah Blah</body></html>",
|
| + TEST_MODE_NORMAL,
|
| + NULL,
|
| + 0,
|
| + net::OK
|
| +};
|
| +
|
| const MockTransaction kTypicalGET_Transaction = {
|
| "http://www.example.com/~foo/bar.html",
|
| "GET",
|
|
|