| 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_XMPPTASK_H_ |   11 #ifndef WEBRTC_LIBJINGLE_XMPP_XMPPTASK_H_ | 
|   12 #define WEBRTC_LIBJINGLE_XMPP_XMPPTASK_H_ |   12 #define WEBRTC_LIBJINGLE_XMPP_XMPPTASK_H_ | 
|   13  |   13  | 
|   14 #include <deque> |   14 #include <deque> | 
|   15 #include <memory> |   15 #include <memory> | 
|   16 #include <string> |   16 #include <string> | 
|   17  |   17  | 
 |   18 #include "third_party/libjingle_xmpp/task_runner/task.h" | 
 |   19 #include "third_party/libjingle_xmpp/task_runner/taskparent.h" | 
|   18 #include "third_party/libjingle_xmpp/xmpp/xmppengine.h" |   20 #include "third_party/libjingle_xmpp/xmpp/xmppengine.h" | 
|   19 #include "third_party/webrtc/base/constructormagic.h" |   21 #include "third_party/webrtc/base/constructormagic.h" | 
|   20 #include "third_party/webrtc/base/sigslot.h" |   22 #include "third_party/webrtc/base/sigslot.h" | 
|   21 #include "third_party/webrtc/base/task.h" |  | 
|   22 #include "third_party/webrtc/base/taskparent.h" |  | 
|   23  |   23  | 
|   24 namespace buzz { |   24 namespace buzz { | 
|   25  |   25  | 
|   26 ///////////////////////////////////////////////////////////////////// |   26 ///////////////////////////////////////////////////////////////////// | 
|   27 // |   27 // | 
|   28 // XMPPTASK |   28 // XMPPTASK | 
|   29 // |   29 // | 
|   30 ///////////////////////////////////////////////////////////////////// |   30 ///////////////////////////////////////////////////////////////////// | 
|   31 // |   31 // | 
|   32 // See Task and XmppClient first. |   32 // See Task and XmppClient first. | 
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  166   std::string id_; |  166   std::string id_; | 
|  167  |  167  | 
|  168 #if !defined(NDEBUG) |  168 #if !defined(NDEBUG) | 
|  169   bool debug_force_timeout_; |  169   bool debug_force_timeout_; | 
|  170 #endif |  170 #endif | 
|  171 }; |  171 }; | 
|  172  |  172  | 
|  173 }  // namespace buzz |  173 }  // namespace buzz | 
|  174  |  174  | 
|  175 #endif // WEBRTC_LIBJINGLE_XMPP_XMPPTASK_H_ |  175 #endif // WEBRTC_LIBJINGLE_XMPP_XMPPTASK_H_ | 
| OLD | NEW |