Modify old-style derived GFE_BUG macros to have IDs.

Usage of the macros was replaced by V2 set of macros. Context: go/gfe-bug-improvements. Now that everything was migrated to V2, we are updating V1 macros and will updated everything back to drop the V2 suffix.

GFE_BUG macros were changed in cl/362922435
SPDY_BUG macros were changed in cl/363160900, but one was missed. This CL corrects it.

PiperOrigin-RevId: 363240499
Change-Id: I77b4932e8e47bfef2f34000c0f5984e0a3b6ce45
diff --git a/spdy/platform/api/spdy_bug_tracker.h b/spdy/platform/api/spdy_bug_tracker.h
index 75b4640..bec4776 100644
--- a/spdy/platform/api/spdy_bug_tracker.h
+++ b/spdy/platform/api/spdy_bug_tracker.h
@@ -8,7 +8,7 @@
 #include "net/spdy/platform/impl/spdy_bug_tracker_impl.h"
 
 #define SPDY_BUG SPDY_BUG_IMPL
-#define SPDY_BUG_IF(condition) SPDY_BUG_IF_IMPL(condition)
+#define SPDY_BUG_IF(bug_id, condition) SPDY_BUG_IF_IMPL(bug_id, condition)
 
 // V2 macros are the same as all the SPDY_BUG flavor above, but they take a
 // bug_id parameter.