Index: net/cert/internal/test_helpers.h |
diff --git a/net/cert/internal/test_helpers.h b/net/cert/internal/test_helpers.h |
index ad9ef189dcf9004a819b187ed3c4d695eca28613..a1b3d8045ee2e31ec685aa81ff3f5b82162db786 100644 |
--- a/net/cert/internal/test_helpers.h |
+++ b/net/cert/internal/test_helpers.h |
@@ -25,16 +25,6 @@ bool operator==(const Input& a, const Input& b); |
} // namespace der |
-// Creates a der::Input from an std::string. The lifetimes are a bit subtle |
-// when using this function: |
-// |
-// The returned der::Input() is only valid so long as the input string is alive |
-// and is not mutated. |
-// |
-// Note that the input parameter has been made a pointer to prevent callers |
-// from accidentally passing an r-value. |
-der::Input InputFromString(const std::string* s); |
- |
// Parses |s| as a DER SEQUENCE TLV and returns a der::Input corresponding to |
// the value portion. On error returns an empty der::Input and adds a gtest |
// failure. |