blob: 6b636796e462476eeeb50741d6315360c4e59681 [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_icmp_session_factory.h"
namespace shill {
MockIcmpSessionFactory::MockIcmpSessionFactory() = default;
MockIcmpSessionFactory::~MockIcmpSessionFactory() = default;
MockIcmpSessionFactory* MockIcmpSessionFactory::GetInstance() {
static base::NoDestructor<MockIcmpSessionFactory> instance;
testing::Mock::AllowLeak(instance.get());
return instance.get();
}
} // namespace shill