Use QUICHE_BUG instead of GFE_BUG in Balsa.

I missed these in cl/441580143: I wrote that change by removing the includes and
seeing what fails to compile, but is seems like gfe/base/bug_utils.h is
transitively included in a few files.

PiperOrigin-RevId: 442221024
diff --git a/quiche/common/balsa/balsa_frame.h b/quiche/common/balsa/balsa_frame.h
index 5cc00c7..5b54272 100644
--- a/quiche/common/balsa/balsa_frame.h
+++ b/quiche/common/balsa/balsa_frame.h
@@ -16,6 +16,7 @@
 #include "quiche/common/balsa/framer_interface.h"
 #include "quiche/common/balsa/http_validation_policy.h"
 #include "quiche/common/balsa/noop_balsa_visitor.h"
+#include "quiche/common/platform/api/quiche_bug_tracker.h"
 #include "quiche/common/platform/api/quiche_export.h"
 
 namespace quiche {
@@ -120,7 +121,7 @@
   // set_balsa_trailer(nullptr).
   void set_balsa_trailer(BalsaHeaders* trailer) {
     if (trailer != nullptr && is_request()) {
-      GFE_BUG(bug_1317_1) << "Trailer in request is not allowed.";
+      QUICHE_BUG(bug_1317_1) << "Trailer in request is not allowed.";
       return;
     }
 
diff --git a/quiche/common/balsa/balsa_headers.cc b/quiche/common/balsa/balsa_headers.cc
index 4c57b58..8ab304b 100644
--- a/quiche/common/balsa/balsa_headers.cc
+++ b/quiche/common/balsa/balsa_headers.cc
@@ -691,7 +691,7 @@
   // Remove whitespace around search value.
   absl::string_view needle = search_value;
   strings::RemoveWhitespaceContext(&needle);
-  GFE_BUG_IF(bug_22783_2, needle != search_value)
+  QUICHE_BUG_IF(bug_22783_2, needle != search_value)
       << "Search value should not be surrounded by spaces.";
 
   // We have nothing to do for empty needle strings.