| 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 |
| 11 #ifndef WEBRTC_LIBJINGLE_XMPP_XMPPCLIENT_H_ | 11 #ifndef WEBRTC_LIBJINGLE_XMPP_XMPPCLIENT_H_ |
| 12 #define WEBRTC_LIBJINGLE_XMPP_XMPPCLIENT_H_ | 12 #define WEBRTC_LIBJINGLE_XMPP_XMPPCLIENT_H_ |
| 13 | 13 |
| 14 #include <string> | 14 #include <string> |
| 15 #include "webrtc/libjingle/xmpp/asyncsocket.h" | 15 #include "webrtc/libjingle/xmpp/asyncsocket.h" |
| 16 #include "webrtc/libjingle/xmpp/xmppclientsettings.h" | 16 #include "webrtc/libjingle/xmpp/xmppclientsettings.h" |
| 17 #include "webrtc/libjingle/xmpp/xmppengine.h" | 17 #include "webrtc/libjingle/xmpp/xmppengine.h" |
| 18 #include "webrtc/libjingle/xmpp/xmpptask.h" | 18 #include "webrtc/libjingle/xmpp/xmpptask.h" |
| 19 #include "webrtc/base/basicdefs.h" | |
| 20 #include "webrtc/base/sigslot.h" | 19 #include "webrtc/base/sigslot.h" |
| 21 #include "webrtc/base/task.h" | 20 #include "webrtc/base/task.h" |
| 22 | 21 |
| 23 namespace buzz { | 22 namespace buzz { |
| 24 | 23 |
| 25 class PreXmppAuth; | 24 class PreXmppAuth; |
| 26 class CaptchaChallenge; | 25 class CaptchaChallenge; |
| 27 | 26 |
| 28 // Just some non-colliding number. Could have picked "1". | 27 // Just some non-colliding number. Could have picked "1". |
| 29 #define XMPP_CLIENT_TASK_CODE 0x366c1e47 | 28 #define XMPP_CLIENT_TASK_CODE 0x366c1e47 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 friend class Private; | 138 friend class Private; |
| 140 rtc::scoped_ptr<Private> d_; | 139 rtc::scoped_ptr<Private> d_; |
| 141 | 140 |
| 142 bool delivering_signal_; | 141 bool delivering_signal_; |
| 143 bool valid_; | 142 bool valid_; |
| 144 }; | 143 }; |
| 145 | 144 |
| 146 } | 145 } |
| 147 | 146 |
| 148 #endif // WEBRTC_LIBJINGLE_XMPP_XMPPCLIENT_H_ | 147 #endif // WEBRTC_LIBJINGLE_XMPP_XMPPCLIENT_H_ |
| OLD | NEW |