| Index: chrome/test/nacl/pnacl_header_test.cc
|
| diff --git a/chrome/test/nacl/pnacl_header_test.cc b/chrome/test/nacl/pnacl_header_test.cc
|
| index ddb26625b0a7bd8dac04deaf8e9b6088c2e17934..58ba78520f1d7fe5ee12e867f74becda86f874ca 100644
|
| --- a/chrome/test/nacl/pnacl_header_test.cc
|
| +++ b/chrome/test/nacl/pnacl_header_test.cc
|
| @@ -99,7 +99,7 @@ scoped_ptr<HttpResponse> PnaclHeaderTest::WatchForPexeFetch(
|
| http_response->set_code(net::HTTP_OK);
|
| http_response->set_content("");
|
| http_response->set_content_type("application/octet-stream");
|
| - return http_response.PassAs<HttpResponse>();
|
| + return http_response.Pass();
|
| }
|
|
|
| // Skip other non-pexe files and let ServeFilesFromDirectory handle it.
|
| @@ -132,7 +132,7 @@ scoped_ptr<HttpResponse> PnaclHeaderTest::WatchForPexeFetch(
|
| http_response->set_code(net::HTTP_NOT_FOUND);
|
| http_response->set_content("PEXE ... not found");
|
| http_response->set_content_type("application/octet-stream");
|
| - return http_response.PassAs<HttpResponse>();
|
| + return http_response.Pass();
|
| }
|
|
|
| IN_PROC_BROWSER_TEST_F(PnaclHeaderTest, TestHasPnaclHeader) {
|
|
|