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

Unified Diff: webrtc/base/md5.cc

Issue 1349213003: Remove overridden basictypes.h. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git@master
Patch Set: Added missing include for Win. 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 | « webrtc/base/basictypes_unittest.cc ('k') | webrtc/base/sha1.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/md5.cc
diff --git a/webrtc/base/md5.cc b/webrtc/base/md5.cc
index 54128907ad59ae334af25291ef0cc3f05ca4554e..6d47b6001cf6ad985ad5900dfb688dd14fdfa13e 100644
--- a/webrtc/base/md5.cc
+++ b/webrtc/base/md5.cc
@@ -23,13 +23,13 @@
// TODO: Avoid memcmpy - hash directly from memory.
#include <string.h> // for memcpy().
-#include "webrtc/base/byteorder.h" // for ARCH_CPU_LITTLE_ENDIAN.
+#include "webrtc/base/byteorder.h" // for RTC_ARCH_CPU_LITTLE_ENDIAN.
namespace rtc {
-#ifdef ARCH_CPU_LITTLE_ENDIAN
+#ifdef RTC_ARCH_CPU_LITTLE_ENDIAN
#define ByteReverse(buf, len) // Nothing.
-#else // ARCH_CPU_BIG_ENDIAN
+#else // RTC_ARCH_CPU_BIG_ENDIAN
static void ByteReverse(uint32* buf, int len) {
for (int i = 0; i < len; ++i) {
buf[i] = rtc::GetLE32(&buf[i]);
« no previous file with comments | « webrtc/base/basictypes_unittest.cc ('k') | webrtc/base/sha1.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698