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

Unified Diff: webrtc/libjingle/xmpp/xmpppump.cc

Issue 1362503003: Use suffixed {uint,int}{8,16,32,64}_t types. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase + revert basictypes.h (to be landed separately just in case of a revert due to unexpected us… Created 5 years, 2 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/libjingle/xmpp/xmpppump.h ('k') | webrtc/libjingle/xmpp/xmppthread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/libjingle/xmpp/xmpppump.cc
diff --git a/webrtc/libjingle/xmpp/xmpppump.cc b/webrtc/libjingle/xmpp/xmpppump.cc
index 45259b12151143413e5dc70627496fc2b615afdf..a428ffa4dc486f9a7be8a13d8c48658d6423da89 100644
--- a/webrtc/libjingle/xmpp/xmpppump.cc
+++ b/webrtc/libjingle/xmpp/xmpppump.cc
@@ -49,8 +49,8 @@ void XmppPump::WakeTasks() {
rtc::Thread::Current()->Post(this);
}
-int64 XmppPump::CurrentTime() {
- return (int64)rtc::Time();
+int64_t XmppPump::CurrentTime() {
+ return (int64_t)rtc::Time();
}
void XmppPump::OnMessage(rtc::Message *pmsg) {
« no previous file with comments | « webrtc/libjingle/xmpp/xmpppump.h ('k') | webrtc/libjingle/xmpp/xmppthread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698