Provide default implementation for quic_bug_tracker.h API
This was originally cl/377894659, it got rolled back in cl/377912739 because the non-prod include path was wrong. This fixes that.
PiperOrigin-RevId: 377969454
diff --git a/common/platform/api/quiche_bug_tracker.h b/common/platform/api/quiche_bug_tracker.h
index 0e8e456..27ac0d2 100644
--- a/common/platform/api/quiche_bug_tracker.h
+++ b/common/platform/api/quiche_bug_tracker.h
@@ -5,7 +5,7 @@
#ifndef QUICHE_COMMON_PLATFORM_API_QUICHE_BUG_TRACKER_H_
#define QUICHE_COMMON_PLATFORM_API_QUICHE_BUG_TRACKER_H_
-#include "net/quiche/common/platform/impl/quiche_bug_tracker_impl.h"
+#include "quiche_platform_impl/quiche_bug_tracker_impl.h"
#define QUICHE_BUG QUICHE_BUG_IMPL
#define QUICHE_BUG_IF QUICHE_BUG_IF_IMPL
diff --git a/common/platform/default/quiche_platform_impl/quiche_bug_tracker_impl.h b/common/platform/default/quiche_platform_impl/quiche_bug_tracker_impl.h
new file mode 100644
index 0000000..de164aa
--- /dev/null
+++ b/common/platform/default/quiche_platform_impl/quiche_bug_tracker_impl.h
@@ -0,0 +1,15 @@
+// Copyright 2021 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 QUICHE_COMMON_PLATFORM_DEFAULT_QUICHE_PLATFORM_IMPL_QUICHE_BUG_TRACKER_IMPL_H_
+#define QUICHE_COMMON_PLATFORM_DEFAULT_QUICHE_PLATFORM_IMPL_QUICHE_BUG_TRACKER_IMPL_H_
+
+#include "common/platform/api/quiche_logging.h"
+
+#define QUICHE_BUG_IMPL(b) QUICHE_LOG(DFATAL)
+#define QUICHE_BUG_IF_IMPL(b, condition) QUICHE_LOG_IF(DFATAL, condition)
+#define QUICHE_PEER_BUG_IMPL(b) QUICHE_LOG(DFATAL)
+#define QUICHE_PEER_BUG_IF_IMPL(b, condition) QUICHE_LOG_IF(DFATAL, condition)
+
+#endif // QUICHE_COMMON_PLATFORM_DEFAULT_QUICHE_PLATFORM_IMPL_QUICHE_BUG_TRACKER_IMPL_H_