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

Unified Diff: third_party/WebKit/Source/wtf/text/StringImplTest.cpp

Issue 1436153002: Apply clang-format with Chromium-style without column limit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/wtf/text/StringImplTest.cpp
diff --git a/third_party/WebKit/Source/wtf/text/StringImplTest.cpp b/third_party/WebKit/Source/wtf/text/StringImplTest.cpp
index 3173da6f8b8d28873e4b321ad553ceb149a67a63..959d1f4acc01fe9adf7d66f55b2be312cbe55a66 100644
--- a/third_party/WebKit/Source/wtf/text/StringImplTest.cpp
+++ b/third_party/WebKit/Source/wtf/text/StringImplTest.cpp
@@ -31,18 +31,16 @@
namespace WTF {
-TEST(StringImplTest, Create8Bit)
-{
- RefPtr<StringImpl> testStringImpl = StringImpl::create("1224");
- EXPECT_TRUE(testStringImpl->is8Bit());
+TEST(StringImplTest, Create8Bit) {
+ RefPtr<StringImpl> testStringImpl = StringImpl::create("1224");
+ EXPECT_TRUE(testStringImpl->is8Bit());
}
-TEST(StringImplTest, Latin1CaseFoldTable)
-{
- LChar symbol = 0xff;
- while (symbol--) {
- EXPECT_EQ(Unicode::foldCase(symbol), StringImpl::latin1CaseFoldTable[symbol]);
- }
+TEST(StringImplTest, Latin1CaseFoldTable) {
+ LChar symbol = 0xff;
+ while (symbol--) {
+ EXPECT_EQ(Unicode::foldCase(symbol), StringImpl::latin1CaseFoldTable[symbol]);
+ }
}
-} // namespace WTF
+} // namespace WTF
« no previous file with comments | « third_party/WebKit/Source/wtf/text/StringImplCF.cpp ('k') | third_party/WebKit/Source/wtf/text/StringOperators.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698