blob: 7e093f1b0fa84dc815046e7433f7adfd8447e49b [file] [log] [blame]
// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shill/mock_profile.h"
#include <string>
#include <base/memory/ref_counted.h>
#include <base/strings/stringprintf.h>
#include <gmock/gmock.h>
#include "shill/refptr_types.h"
namespace shill {
MockProfile::MockProfile(ControlInterface *control,
Metrics *metrics,
Manager *manager)
: Profile(control, metrics, manager, Identifier("mock"), "", false) {
}
MockProfile::MockProfile(ControlInterface *control,
Metrics *metrics,
Manager *manager,
const std::string &identifier)
: Profile(control, metrics, manager, Identifier(identifier), "", false) {
}
MockProfile::~MockProfile() {}
} // namespace shill