blob: 4501c9cddea247b8d5d0ec5dd55378cceac34005 [file] [log] [blame]
Chris Masonea82b7112011-05-25 15:16:29 -07001// Copyright (c) 2011 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_service.h"
6
7#include <string>
8
9#include <base/memory/ref_counted.h>
10#include <base/stringprintf.h>
11#include <gmock/gmock.h>
12
Chris Masone7aa5f902011-07-11 11:13:35 -070013#include "shill/refptr_types.h"
14
15using std::string;
16
Chris Masonea82b7112011-05-25 15:16:29 -070017namespace shill {
18
19class ControlInterface;
20class EventDispatcher;
21
Chris Masonea82b7112011-05-25 15:16:29 -070022MockService::MockService(ControlInterface *control_interface,
23 EventDispatcher *dispatcher,
Chris Masone7aa5f902011-07-11 11:13:35 -070024 const ProfileRefPtr &profile,
25 const EntryRefPtr &entry,
26 const string& name)
27 : Service(control_interface, dispatcher, profile, entry, name) {
Chris Masonea82b7112011-05-25 15:16:29 -070028}
29
30MockService::~MockService() {}
31
32} // namespace shill