| Index: net/quic/platform/impl/quic_bug_tracker_impl.h
|
| diff --git a/net/quic/platform/impl/quic_bug_tracker_impl.h b/net/quic/platform/impl/quic_bug_tracker_impl.h
|
| index 16675042718e7dd84e35af1b0130476aa10f1cf6..a734fc7dd33cbff2dcbf2c9eea8863e931a585d9 100644
|
| --- a/net/quic/platform/impl/quic_bug_tracker_impl.h
|
| +++ b/net/quic/platform/impl/quic_bug_tracker_impl.h
|
| @@ -1,15 +1,13 @@
|
| // Copyright (c) 2016 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.
|
| -#ifndef NET_QUIC_PLATFORM_IMPL_QUIC_BUG_TRACKER_IMPL_H_
|
| -#define NET_QUIC_PLATFORM_IMPL_QUIC_BUG_TRACKER_IMPL_H_
|
| +#ifndef NET_QUIC_CORE_QUIC_BUG_TRACKER_H_
|
| +#define NET_QUIC_CORE_QUIC_BUG_TRACKER_H_
|
|
|
| -#include "net/quic/platform/api/quic_logging.h"
|
| +// For external QUIC, QUIC_BUG should be #defined to LOG(DFATAL) and
|
| +// QUIC_BUG_IF(condition) to LOG_IF(DFATAL, condition) as client-side log rate
|
| +// limiting is less important and chrome doesn't LOG_FIRST_N anyway.
|
| +#define QUIC_BUG_IMPL LOG(DFATAL)
|
| +#define QUIC_BUG_IF_IMPL(condition) LOG_IF(DFATAL, condition)
|
|
|
| -// For external QUIC, QUIC_BUG should be #defined to QUIC_LOG(DFATAL) and
|
| -// QUIC_BUG_IF(condition) to QUIC LOG_IF(DFATAL, condition) as client-side log
|
| -// rate limiting is less important and chrome doesn't QUIC_LOG_FIRST_N anyway.
|
| -#define QUIC_BUG_IMPL QUIC_LOG(DFATAL)
|
| -#define QUIC_BUG_IF_IMPL(condition) QUIC_LOG_IF(DFATAL, condition)
|
| -
|
| -#endif // NET_QUIC_PLATFORM_IMPL_QUIC_BUG_TRACKER_IMPL_H_
|
| +#endif // NET_QUIC_CORE_QUIC_BUG_TRACKER_H_
|
|
|