OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 return; | 42 return; |
43 state_ = state; | 43 state_ = state; |
44 if (notify_ != NULL) | 44 if (notify_ != NULL) |
45 notify_->OnStateChange(state); | 45 notify_->OnStateChange(state); |
46 } | 46 } |
47 | 47 |
48 void XmppPump::WakeTasks() { | 48 void XmppPump::WakeTasks() { |
49 rtc::Thread::Current()->Post(this); | 49 rtc::Thread::Current()->Post(this); |
50 } | 50 } |
51 | 51 |
52 int64 XmppPump::CurrentTime() { | 52 int64_t XmppPump::CurrentTime() { |
53 return (int64)rtc::Time(); | 53 return (int64_t)rtc::Time(); |
54 } | 54 } |
55 | 55 |
56 void XmppPump::OnMessage(rtc::Message *pmsg) { | 56 void XmppPump::OnMessage(rtc::Message *pmsg) { |
57 RunTasks(); | 57 RunTasks(); |
58 } | 58 } |
59 | 59 |
60 buzz::XmppReturnStatus XmppPump::SendStanza(const buzz::XmlElement *stanza) { | 60 buzz::XmppReturnStatus XmppPump::SendStanza(const buzz::XmlElement *stanza) { |
61 if (!AllChildrenDone()) | 61 if (!AllChildrenDone()) |
62 return client_->SendStanza(stanza); | 62 return client_->SendStanza(stanza); |
63 return buzz::XMPP_RETURN_BADSTATE; | 63 return buzz::XMPP_RETURN_BADSTATE; |
64 } | 64 } |
65 | 65 |
66 } // namespace buzz | 66 } // namespace buzz |
67 | 67 |
OLD | NEW |