blob: 0fc99a05b247ffc70a16a20d987d0494f7b55c5e [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)
Chris Masone7df0c672011-07-15 10:24:54 -070024 : Profile(control_interface, glib, manager, Identifier("mock"), false) {
25}
26
27MockProfile::MockProfile(ControlInterface *control_interface,
28 GLib *glib,
29 Manager *manager,
30 const std::string &identifier)
31 : Profile(control_interface, glib, manager, Identifier(identifier), false) {
Chris Masone7aa5f902011-07-11 11:13:35 -070032}
33
34MockProfile::~MockProfile() {}
35
36} // namespace shill