blob: 797d1721fed2773e765aa25e3c9322732b7a8e84 [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
Thieu Le5133b712013-02-19 14:47:21 -080017MockProfile::MockProfile(ControlInterface *control,
18 Metrics *metrics,
19 Manager *manager)
20 : Profile(control, metrics, manager, Identifier("mock"), "", false) {
Chris Masone7df0c672011-07-15 10:24:54 -070021}
22
Chris Masone2ae797d2011-08-23 20:41:00 -070023MockProfile::MockProfile(ControlInterface *control,
Thieu Le5133b712013-02-19 14:47:21 -080024 Metrics *metrics,
Chris Masone7df0c672011-07-15 10:24:54 -070025 Manager *manager,
26 const std::string &identifier)
Thieu Le5133b712013-02-19 14:47:21 -080027 : Profile(control, metrics, manager, Identifier(identifier), "", false) {
Chris Masone7aa5f902011-07-11 11:13:35 -070028}
29
30MockProfile::~MockProfile() {}
31
32} // namespace shill