blob: 51d0b29e40e977ab45a65a8fe1bafd17bc4c7499 [file] [log] [blame]
// Copyright 2018 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 <gmock/gmock.h>
#include "shill/refptr_types.h"
namespace shill {
MockProfile::MockProfile(ControlInterface* control,
Metrics* metrics,
Manager* manager)
: Profile(control, metrics, manager, Identifier("mock"), base::FilePath(),
false) {
}
MockProfile::MockProfile(ControlInterface* control,
Metrics* metrics,
Manager* manager,
const std::string& identifier)
: Profile(control, metrics, manager, Identifier(identifier),
base::FilePath(), false) {
}
MockProfile::~MockProfile() {}
} // namespace shill