blob: 75dd5d61faf2ffab5831e5e7a5d447dedb6f9c76 [file] [log] [blame]
Paul Stewarte6927402012-01-23 16:11:30 -08001// 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
9namespace shill {
10
11MockHTTPRequest::MockHTTPRequest(ConnectionRefPtr connection)
12 : HTTPRequest(connection,
13 reinterpret_cast<EventDispatcher *>(NULL),
14 reinterpret_cast<Sockets *>(NULL)) {}
15
16MockHTTPRequest::~MockHTTPRequest() {}
17
18} // namespace shill