Index: webrtc/rtc_base/stringutils.h |
diff --git a/webrtc/base/stringutils.h b/webrtc/rtc_base/stringutils.h |
similarity index 97% |
copy from webrtc/base/stringutils.h |
copy to webrtc/rtc_base/stringutils.h |
index 4c241f02ded2e648ab4699d8b2cf5cc0600b5f73..1a6392f34abdf05390fbba7bf05e969a9402ae1f 100644 |
--- a/webrtc/base/stringutils.h |
+++ b/webrtc/rtc_base/stringutils.h |
@@ -8,8 +8,8 @@ |
* be found in the AUTHORS file in the root of the source tree. |
*/ |
-#ifndef WEBRTC_BASE_STRINGUTILS_H__ |
-#define WEBRTC_BASE_STRINGUTILS_H__ |
+#ifndef WEBRTC_RTC_BASE_STRINGUTILS_H_ |
+#define WEBRTC_RTC_BASE_STRINGUTILS_H_ |
#include <ctype.h> |
#include <stdarg.h> |
@@ -20,7 +20,7 @@ |
#include <malloc.h> |
#include <wchar.h> |
#define alloca _alloca |
-#endif // WEBRTC_WIN |
+#endif // WEBRTC_WIN |
#if defined(WEBRTC_POSIX) |
#ifdef BSD |
@@ -103,7 +103,7 @@ inline wchar_t tolowercase(wchar_t c) { |
return static_cast<wchar_t>(towlower(c)); |
} |
-#endif // WEBRTC_WIN |
+#endif // WEBRTC_WIN |
#if defined(WEBRTC_POSIX) |
@@ -269,7 +269,7 @@ inline int ascnicmp(const wchar_t* s1, const char* s2, size_t n) { |
size_t asccpyn(wchar_t* buffer, size_t buflen, |
const char* source, size_t srclen = SIZE_UNKNOWN); |
-#endif // WEBRTC_WIN |
+#endif // WEBRTC_WIN |
/////////////////////////////////////////////////////////////////////////////// |
// Traits<char> specializations |
@@ -293,7 +293,7 @@ struct Traits<wchar_t> { |
inline static const wchar_t* empty_str() { return L""; } |
}; |
-#endif // WEBRTC_WIN |
+#endif // WEBRTC_WIN |
// Replaces all occurrences of "search" with "replace". |
void replace_substrs(const char *search, |
@@ -313,4 +313,4 @@ std::string string_trim(const std::string& s); |
} // namespace rtc |
-#endif // WEBRTC_BASE_STRINGUTILS_H__ |
+#endif // WEBRTC_RTC_BASE_STRINGUTILS_H_ |