Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(990)

Unified Diff: net/spdy/platform/api/spdy_string_utils.h

Issue 2778043004: Factor out StringAppendF into spdy/platform/. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/spdy/platform/api/spdy_string_utils.h
diff --git a/net/spdy/platform/api/spdy_string_utils.h b/net/spdy/platform/api/spdy_string_utils.h
index 852bf698aad61e78394a4ef5a305b541f7904ada..fa23b45966a5d83e70c1092529e00aa0d78d5858 100644
--- a/net/spdy/platform/api/spdy_string_utils.h
+++ b/net/spdy/platform/api/spdy_string_utils.h
@@ -27,6 +27,11 @@ inline std::string SpdyStringPrintf(const Args&... args) {
return SpdyStringPrintfImpl(std::forward<const Args&>(args)...);
}
+template <typename... Args>
+inline void SpdyStringAppendF(const Args&... args) {
+ SpdyStringAppendFImpl(std::forward<const Args&>(args)...);
+}
+
} // namespace net
#endif // NET_SPDY_PLATFORM_API_SPDY_STRING_UTILS_H_
« no previous file with comments | « no previous file | net/spdy/platform/api/spdy_string_utils_test.cc » ('j') | net/spdy/spdy_alt_svc_wire_format.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698