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

Unified Diff: webrtc/rtc_base/stringutils.h

Issue 2877023002: Move webrtc/{base => rtc_base} (Closed)
Patch Set: update presubmit.py and DEPS include rules 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
« no previous file with comments | « webrtc/rtc_base/stringize_macros_unittest.cc ('k') | webrtc/rtc_base/stringutils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « webrtc/rtc_base/stringize_macros_unittest.cc ('k') | webrtc/rtc_base/stringutils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698