| Index: webrtc/rtc_base/sha1.h
|
| diff --git a/webrtc/base/sha1.h b/webrtc/rtc_base/sha1.h
|
| similarity index 85%
|
| copy from webrtc/base/sha1.h
|
| copy to webrtc/rtc_base/sha1.h
|
| index aa5a6a55060087f19c1021cd6fb8143f6aec528c..e4db14832127455712b764822272001e0fc243c2 100644
|
| --- a/webrtc/base/sha1.h
|
| +++ b/webrtc/rtc_base/sha1.h
|
| @@ -7,8 +7,8 @@
|
|
|
| // Ported to C++, Google style, under namespace rtc.
|
|
|
| -#ifndef WEBRTC_BASE_SHA1_H_
|
| -#define WEBRTC_BASE_SHA1_H_
|
| +#ifndef WEBRTC_RTC_BASE_SHA1_H_
|
| +#define WEBRTC_RTC_BASE_SHA1_H_
|
|
|
| #include <stdint.h>
|
| #include <stdlib.h>
|
| @@ -28,6 +28,6 @@ void SHA1Init(SHA1_CTX* context);
|
| void SHA1Update(SHA1_CTX* context, const uint8_t* data, size_t len);
|
| void SHA1Final(SHA1_CTX* context, uint8_t digest[SHA1_DIGEST_SIZE]);
|
|
|
| -#endif // WEBRTC_BASE_SHA1_H_
|
| -
|
| } // namespace rtc
|
| +
|
| +#endif // WEBRTC_RTC_BASE_SHA1_H_
|
|
|