blob: 1c36d8e42f8f6a5953897fb7422f4ff6ed8ad634 [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
Chris Masone9d779932011-08-25 16:33:41 -070017MockProfile::MockProfile(ControlInterface *control, Manager *manager)
18 : Profile(control, manager, Identifier("mock"), "", false) {
Chris Masone7df0c672011-07-15 10:24:54 -070019}
20
Chris Masone2ae797d2011-08-23 20:41:00 -070021MockProfile::MockProfile(ControlInterface *control,
Chris Masone7df0c672011-07-15 10:24:54 -070022 Manager *manager,
23 const std::string &identifier)
Chris Masone9d779932011-08-25 16:33:41 -070024 : Profile(control, manager, Identifier(identifier), "", false) {
Chris Masone7aa5f902011-07-11 11:13:35 -070025}
26
27MockProfile::~MockProfile() {}
28
29} // namespace shill