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

Unified Diff: content/browser/devtools/protocol_string.h

Issue 2654923002: Make blink::protocol::StringBuilder a distinct type from WTF::StringBuilder. (Closed)
Patch Set: Corrected the revision number... :-/ Created 3 years, 11 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
« no previous file with comments | « components/ui_devtools/string_util.h ('k') | third_party/WebKit/Source/core/inspector/V8InspectorString.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/protocol_string.h
diff --git a/content/browser/devtools/protocol_string.h b/content/browser/devtools/protocol_string.h
index 1d3d2edf13478fbbcd59d01e783e42870dfbf412..8620823984a0157e9cf4b3940fcc36f426ebc22d 100644
--- a/content/browser/devtools/protocol_string.h
+++ b/content/browser/devtools/protocol_string.h
@@ -53,9 +53,21 @@ class CONTENT_EXPORT StringUtil {
return s;
}
static const size_t kNotFound = static_cast<size_t>(-1);
+ static void builderAppend(StringBuilder& builder, const String& s) {
+ builder.append(s);
+ }
+ static void builderAppend(StringBuilder& builder, char c) {
+ builder.append(c);
+ }
+ static void builderAppend(StringBuilder& builder, const char* s, size_t len) {
+ builder.append(s, len);
+ }
static void builderReserve(StringBuilder& builder, unsigned capacity) {
builder.reserveCapacity(capacity);
}
+ static String builderToString(StringBuilder& builder) {
+ return builder.toString();
+ }
static std::unique_ptr<protocol::Value> parseJSON(const String&);
};
« no previous file with comments | « components/ui_devtools/string_util.h ('k') | third_party/WebKit/Source/core/inspector/V8InspectorString.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698