blob: bf894286d3388c08ee0aef48c399b4771ce05a37 [file] [log] [blame]
// Copyright 2014 The Chromium 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 "net/quic/congestion_control/loss_detection_interface.h"
#include "net/quic/congestion_control/general_loss_algorithm.h"
#include "net/quic/quic_bug_tracker.h"
#include "net/quic/quic_flags.h"
namespace net {
// Factory for loss detection algorithm.
LossDetectionInterface* LossDetectionInterface::Create(
LossDetectionType loss_type) {
return new GeneralLossAlgorithm(loss_type);
}
} // namespace net