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) |
| 12 | : HTTPRequest(connection, |
| 13 | reinterpret_cast<EventDispatcher *>(NULL), |
| 14 | reinterpret_cast<Sockets *>(NULL)) {} |
| 15 | |
| 16 | MockHTTPRequest::~MockHTTPRequest() {} |
| 17 | |
| 18 | } // namespace shill |