Migration from GFE_BUG_V2 (and friends) to GFE_BUG

Per go/gfe-bug-improvements GFE_BUGs are getting stable IDs to allow for monitoring and alerting. To achieve that, a temporary set of V2 macros was added and the codebase was migrated to using the V2 macros. Now that migration is complete, the old-style (sans _V2) macros were changed to also take bug_id parameter, which makes the V2 set obsolete. To complete the transition, the codebase is being migrated back to GFE_BUG macros. Once done, V2 macros will be removed.

PiperOrigin-RevId: 363274690
Change-Id: Iba4e0ba8f9ced0620da27ea58eafea92457055ff
diff --git a/quic/core/qpack/qpack_instruction_decoder.cc b/quic/core/qpack/qpack_instruction_decoder.cc
index 4b037ea..495a58f 100644
--- a/quic/core/qpack/qpack_instruction_decoder.cc
+++ b/quic/core/qpack/qpack_instruction_decoder.cc
@@ -127,7 +127,7 @@
       state_ = State::kVarintStart;
       return true;
     default:
-      QUIC_BUG_V2(quic_bug_10767_1) << "Invalid field type.";
+      QUIC_BUG(quic_bug_10767_1) << "Invalid field type.";
       return false;
   }
 }
@@ -157,7 +157,7 @@
       return true;
     }
     default:
-      QUIC_BUG_V2(quic_bug_10767_2) << "Invalid field type.";
+      QUIC_BUG(quic_bug_10767_2) << "Invalid field type.";
       return false;
   }
 }
@@ -186,7 +186,7 @@
       OnError(ErrorCode::INTEGER_TOO_LARGE, "Encoded integer too large.");
       return false;
     default:
-      QUIC_BUG_V2(quic_bug_10767_3) << "Unknown decode status " << status;
+      QUIC_BUG(quic_bug_10767_3) << "Unknown decode status " << status;
       return false;
   }
 }
@@ -215,7 +215,7 @@
       OnError(ErrorCode::INTEGER_TOO_LARGE, "Encoded integer too large.");
       return false;
     default:
-      QUIC_BUG_V2(quic_bug_10767_4) << "Unknown decode status " << status;
+      QUIC_BUG(quic_bug_10767_4) << "Unknown decode status " << status;
       return false;
   }
 }