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

Unified Diff: third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannelTest.cpp

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 years, 6 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: third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
diff --git a/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannelTest.cpp b/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
index a17e61576cfacb9f6cadc100f50434e1611291ce..d9cbf0c49042f73af6674fb15e48d929a32232d0 100644
--- a/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
+++ b/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
@@ -148,19 +148,15 @@ MATCHER_P2(MemEq,
p,
len,
std::string("pointing to memory") + (negation ? " not" : "") +
- " equal to \"" +
- std::string(p, len) +
- "\" (length=" +
- PrintToString(len) +
- ")") {
+ " equal to \"" + std::string(p, len) +
+ "\" (length=" + PrintToString(len) + ")") {
return memcmp(arg, p, len) == 0;
}
MATCHER_P(KURLEq,
url_string,
std::string(negation ? "doesn't equal" : "equals") + " to \"" +
- url_string +
- "\"") {
+ url_string + "\"") {
KURL url(KURL(), url_string);
*result_listener << "where the url is \"" << arg.GetString().Utf8().data()
<< "\"";

Powered by Google App Engine
This is Rietveld 408576698