chromium/net/third_party/quiche/overrides/quiche_platform_impl/quiche_reference_counted_impl.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_REFERENCE_COUNTED_IMPL_H_
#define NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_REFERENCE_COUNTED_IMPL_H_

#include "base/memory/ref_counted.h"
#include "net/third_party/quiche/src/quiche/quic/platform/api/quic_export.h"

namespace quiche {

class QUIC_EXPORT_PRIVATE QuicheReferenceCountedImpl
    : public base::RefCountedThreadSafe<QuicheReferenceCountedImpl> {};

template <class T>
class QuicheReferenceCountedPointerImpl {};

}  // namespace quiche

#endif  // NET_THIRD_PARTY_QUICHE_OVERRIDES_QUICHE_PLATFORM_IMPL_QUICHE_REFERENCE_COUNTED_IMPL_H_