Paul Stewart | e692740 | 2012-01-23 16:11:30 -0800 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "shill/mock_http_request.h" |
| 6 | |
| 7 | #include "shill/connection.h" |
| 8 | |
| 9 | namespace shill { |
| 10 | |
| 11 | MockHTTPRequest::MockHTTPRequest(ConnectionRefPtr connection) |
Ben Chan | cc225ef | 2014-09-30 13:26:51 -0700 | [diff] [blame] | 12 | : HTTPRequest(connection, nullptr, nullptr) {} |
Paul Stewart | e692740 | 2012-01-23 16:11:30 -0800 | [diff] [blame] | 13 | |
| 14 | MockHTTPRequest::~MockHTTPRequest() {} |
| 15 | |
| 16 | } // namespace shill |