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

Side by Side Diff: webrtc/libjingle/xmpp/xmppclient.h

Issue 1443273002: cleanup: get rid of basicdefs.h include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « webrtc/libjingle/xmpp/constants.cc ('k') | webrtc/libjingle/xmpp/xmppsocket.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « webrtc/libjingle/xmpp/constants.cc ('k') | webrtc/libjingle/xmpp/xmppsocket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698