| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef REMOTING_JINGLE_GLUE_IQ_REQUEST_H_ | 5 #ifndef REMOTING_JINGLE_GLUE_IQ_REQUEST_H_ |
| 6 #define REMOTING_JINGLE_GLUE_IQ_REQUEST_H_ | 6 #define REMOTING_JINGLE_GLUE_IQ_REQUEST_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback_old.h" |
| 13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "remoting/jingle_glue/xmpp_proxy.h" | 15 #include "remoting/jingle_glue/xmpp_proxy.h" |
| 16 #include "third_party/libjingle/source/talk/base/sigslot.h" | 16 #include "third_party/libjingle/source/talk/base/sigslot.h" |
| 17 #include "third_party/libjingle/source/talk/xmpp/xmppengine.h" | 17 #include "third_party/libjingle/source/talk/xmpp/xmppengine.h" |
| 18 | 18 |
| 19 class MessageLoop; | 19 class MessageLoop; |
| 20 class Task; | 20 class Task; |
| 21 | 21 |
| 22 namespace buzz { | 22 namespace buzz { |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 | 244 |
| 245 scoped_ptr<JavascriptIqRequest> request_; | 245 scoped_ptr<JavascriptIqRequest> request_; |
| 246 cricket::SessionManager* session_manager_; | 246 cricket::SessionManager* session_manager_; |
| 247 | 247 |
| 248 DISALLOW_COPY_AND_ASSIGN(SessionStartRequest); | 248 DISALLOW_COPY_AND_ASSIGN(SessionStartRequest); |
| 249 }; | 249 }; |
| 250 | 250 |
| 251 } // namespace remoting | 251 } // namespace remoting |
| 252 | 252 |
| 253 #endif // REMOTING_JINGLE_GLUE_IQ_REQUEST_H_ | 253 #endif // REMOTING_JINGLE_GLUE_IQ_REQUEST_H_ |
| OLD | NEW |