| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef HEADLESS_TEST_TEST_PROTOCOL_HANDLER_H_ | 5 #ifndef HEADLESS_TEST_TEST_PROTOCOL_HANDLER_H_ |
| 6 #define HEADLESS_TEST_TEST_PROTOCOL_HANDLER_H_ | 6 #define HEADLESS_TEST_TEST_PROTOCOL_HANDLER_H_ |
| 7 | 7 |
| 8 #include "net/http/http_request_headers.h" |
| 8 #include "net/url_request/url_request_job_factory.h" | 9 #include "net/url_request/url_request_job_factory.h" |
| 9 | 10 |
| 10 namespace headless { | 11 namespace headless { |
| 11 | 12 |
| 12 class TestProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler { | 13 class TestProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler { |
| 13 public: | 14 public: |
| 14 TestProtocolHandler(const std::string& body); | 15 TestProtocolHandler(const std::string& body); |
| 15 ~TestProtocolHandler() override {} | 16 ~TestProtocolHandler() override {} |
| 16 | 17 |
| 17 net::URLRequestJob* MaybeCreateJob( | 18 net::URLRequestJob* MaybeCreateJob( |
| 18 net::URLRequest* request, | 19 net::URLRequest* request, |
| 19 net::NetworkDelegate* network_delegate) const override; | 20 net::NetworkDelegate* network_delegate) const override; |
| 20 | 21 |
| 22 const net::HttpRequestHeaders& last_http_request_headers() const { |
| 23 return last_http_request_headers_; |
| 24 } |
| 25 |
| 21 private: | 26 private: |
| 27 mutable net::HttpRequestHeaders last_http_request_headers_; |
| 22 std::string body_; | 28 std::string body_; |
| 23 | 29 |
| 24 DISALLOW_COPY_AND_ASSIGN(TestProtocolHandler); | 30 DISALLOW_COPY_AND_ASSIGN(TestProtocolHandler); |
| 25 }; | 31 }; |
| 26 | 32 |
| 27 } // namespace headless | 33 } // namespace headless |
| 28 | 34 |
| 29 #endif // HEADLESS_TEST_TEST_PROTOCOL_HANDLER_H_ | 35 #endif // HEADLESS_TEST_TEST_PROTOCOL_HANDLER_H_ |
| OLD | NEW |