Adds a new operator to SpdyHeaderBlock::ValueProxy, allowing it to be compared with SpdyStringPiece.

gfe-relnote: n/a (new code, only used in tests)
PiperOrigin-RevId: 285846905
Change-Id: I5273fbe19b4cb9c7778f98fd53e2fb7d003881d5
diff --git a/spdy/core/spdy_header_block.h b/spdy/core/spdy_header_block.h
index bd575f4..b02284f 100644
--- a/spdy/core/spdy_header_block.h
+++ b/spdy/core/spdy_header_block.h
@@ -194,7 +194,10 @@
     ValueProxy& operator=(const ValueProxy& other) = delete;
 
     // Assignment modifies the underlying SpdyHeaderBlock.
-    ValueProxy& operator=(const SpdyStringPiece other);
+    ValueProxy& operator=(SpdyStringPiece value);
+
+    // Provides easy comparison against SpdyStringPiece.
+    bool operator==(SpdyStringPiece value) const;
 
     std::string as_string() const;