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

Unified Diff: third_party/WebKit/Source/wtf/text/icu/UnicodeIcu.h

Issue 1373773002: Fix check-webkit-style errors in Source/wtf/text/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « third_party/WebKit/Source/wtf/text/WTFString.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/text/icu/UnicodeIcu.h
diff --git a/third_party/WebKit/Source/wtf/text/icu/UnicodeIcu.h b/third_party/WebKit/Source/wtf/text/icu/UnicodeIcu.h
index b84e19b19277140b3629839d844f10c45e251210..2f5d7db633e66fa337286a1c5e627c7fa594cce6 100644
--- a/third_party/WebKit/Source/wtf/text/icu/UnicodeIcu.h
+++ b/third_party/WebKit/Source/wtf/text/icu/UnicodeIcu.h
@@ -20,8 +20,8 @@
*
*/
-#ifndef WTF_UNICODE_ICU_H
-#define WTF_UNICODE_ICU_H
+#ifndef WTF_UnicodeIcu_h
+#define WTF_UnicodeIcu_h
#include <unicode/uchar.h>
#include <unicode/ustring.h>
@@ -160,7 +160,7 @@ inline UChar32 toTitleCase(UChar32 c)
inline bool isArabicChar(UChar32 c)
{
- return ublock_getCode(c) == UBLOCK_ARABIC;
+ return ublock_getCode(c) == UBLOCK_ARABIC;
}
inline bool isAlphanumeric(UChar32 c)
@@ -227,4 +227,4 @@ inline int umemcasecmp(const UChar* a, const UChar* b, int len)
} // namespace WTF
-#endif // WTF_UNICODE_ICU_H
+#endif // WTF_UnicodeIcu_h
« no previous file with comments | « third_party/WebKit/Source/wtf/text/WTFString.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698