blob: 1c36d8e42f8f6a5953897fb7422f4ff6ed8ad634 [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/stringprintf.h>
#include <gmock/gmock.h>
#include "shill/refptr_types.h"
namespace shill {
MockProfile::MockProfile(ControlInterface *control, Manager *manager)
: Profile(control, manager, Identifier("mock"), "", false) {
}
MockProfile::MockProfile(ControlInterface *control,
Manager *manager,
const std::string &identifier)
: Profile(control, manager, Identifier(identifier), "", false) {
}
MockProfile::~MockProfile() {}
} // namespace shill