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

Unified Diff: third_party/WebKit/Source/core/html/forms/EmailInputType.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/core/html/forms/EmailInputType.cpp
diff --git a/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp b/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
index ea60079f373d09d927a9fb009e63e5867c5a19a8..95d0bbb52b23a12445a6611581e378d610b42ba4 100644
--- a/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
+++ b/third_party/WebKit/Source/core/html/forms/EmailInputType.cpp
@@ -93,7 +93,8 @@ String EmailInputType::ConvertEmailAddressToASCII(const ScriptRegexp& regexp,
StringBuilder builder;
builder.Append(address, 0, at_position + 1);
#if U_ICU_VERSION_MAJOR_NUM >= 59
- builder.Append(icu::toUCharPtr(domain_name.getBuffer()), domain_name.length());
+ builder.Append(icu::toUCharPtr(domain_name.getBuffer()),
+ domain_name.length());
#else
builder.Append(domain_name.getBuffer(), domain_name.length());
#endif

Powered by Google App Engine
This is Rietveld 408576698