blob: dd2ce9821210609b1ef94727b09b952e9be44544 [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
21MockProfile::MockProfile(ControlInterface *control_interface, GLib *glib)
22 : Profile(control_interface, glib) {
23}
24
25MockProfile::~MockProfile() {}
26
27} // namespace shill