Automated g4 rollback of changelist 377894659.

*** Reason for rollback ***

TAP has detected 10 or more targets failed to build at cl/377894659.

TO ROLLFORWARD (without additional approval): Use go/undo-autorollback and consider filing a go/autorollback-bug.

To see all broken targets visit http://test/377894659 or go/newly-broken?p=cl:377894659 if the former is slow to load.
To prevent noise from flakes, TAP double-checked the following target fails to build:
http://sponge2/label%3Atap%20label%3Apostsubmit%20cl%3A377894659%20target%3A%2F%2Fgooglemac%2FiPhone%2FShared%2FARCore%2FSceneViewer%2FStandalone%3AStandaloneDev-OpenGL.apple_binary%20TAP_BUILD_FLAGS_SUFFIX%3ACAMQAiogLS1kZWZpbmU9aWdhLmZlYXR1cmVfY2hhbm5lbD1kZXYqFC0tb2JqY2NvcHQ9LURERUJVRz0xoAIk6AIE%2BAIJ
but used to build fine:
http://sponge2/label%3Atap%20label%3Apostsubmit%20cl%3A377894658%20target%3A%2F%2Fgooglemac%2FiPhone%2FShared%2FARCore%2FSceneViewer%2FStandalone%3AStandaloneDev-OpenGL.apple_binary%20TAP_BUILD_FLAGS_SUFFIX%3ACAMQAiogLS1kZWZpbmU9aWdhLmZlYXR1cmVfY2hhbm5lbD1kZXYqFC0tb2JqY2NvcHQ9LURERUJVRz0xoAIk6AIE%2BAIJ

Questions? Comments? See the URL: go/autorollback

*** Original change description ***

Provide default implementation for quic_bug_tracker.h API

***

PiperOrigin-RevId: 377912739
diff --git a/common/platform/api/quiche_bug_tracker.h b/common/platform/api/quiche_bug_tracker.h
index 27ac0d2..0e8e456 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 "quiche_platform_impl/quiche_bug_tracker_impl.h"
+#include "net/quiche/common/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
deleted file mode 100644
index de164aa..0000000
--- a/common/platform/default/quiche_platform_impl/quiche_bug_tracker_impl.h
+++ /dev/null
@@ -1,15 +0,0 @@
-// 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_