blob: 628d9d202c98036d05be7095711a6a94ca1bbe40 [file] [log] [blame]
Chris Masone7aa5f902011-07-11 11:13:35 -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_profile.h"
6
7#include <string>
8
9#include <base/memory/ref_counted.h>
10#include <base/stringprintf.h>
11#include <gmock/gmock.h>
12
13#include "shill/refptr_types.h"
14
15namespace shill {
16
17class ControlInterface;
18class GLib;
19class Manager;
20
Chris Masone6791a432011-07-12 13:23:19 -070021MockProfile::MockProfile(ControlInterface *control_interface,
22 GLib *glib,
23 Manager *manager)
24 : Profile(control_interface, glib, manager) {
Chris Masone7aa5f902011-07-11 11:13:35 -070025}
26
27MockProfile::~MockProfile() {}
28
29} // namespace shill