blob: f39ef6d8269f690ad8096cda915b6104afe3dc69 [file] [log] [blame]
Paul Stewart9413bcc2013-04-04 16:12:43 -07001// Copyright (c) 2013 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_ethernet_service.h"
6
7#include "shill/ethernet.h" // Needed to pass an EthernetRefPtr.
8
9namespace shill {
10
11MockEthernetService::MockEthernetService(ControlInterface *control_interface,
12 Metrics *metrics)
13 : EthernetService(control_interface, NULL, metrics, NULL,
14 EthernetRefPtr()) {}
15
16MockEthernetService::~MockEthernetService() {}
17
18} // namespace shill