OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ | 5 #ifndef JINGLE_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ |
6 #define CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ | 6 #define JINGLE_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "chrome/common/net/notifier/communicator/login.h" | 10 #include "jingle/notifier/communicator/login.h" |
11 #include "talk/base/scoped_ptr.h" | 11 #include "talk/base/scoped_ptr.h" |
12 #include "talk/base/sigslot.h" | 12 #include "talk/base/sigslot.h" |
13 #include "talk/base/task.h" | 13 #include "talk/base/task.h" |
14 #include "talk/xmpp/xmppengine.h" | 14 #include "talk/xmpp/xmppengine.h" |
15 | 15 |
16 namespace buzz { | 16 namespace buzz { |
17 class AsyncSocket; | 17 class AsyncSocket; |
18 class PreXmppAuth; | 18 class PreXmppAuth; |
19 class XmppClient; | 19 class XmppClient; |
20 class XmppClientSettings; | 20 class XmppClientSettings; |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 bool successful_connection_; | 128 bool successful_connection_; |
129 LoginSettings* login_settings_; | 129 LoginSettings* login_settings_; |
130 buzz::XmppClient* client_; | 130 buzz::XmppClient* client_; |
131 scoped_ptr<XmppConnectionGenerator> connection_generator_; | 131 scoped_ptr<XmppConnectionGenerator> connection_generator_; |
132 | 132 |
133 DISALLOW_COPY_AND_ASSIGN(SingleLoginAttempt); | 133 DISALLOW_COPY_AND_ASSIGN(SingleLoginAttempt); |
134 }; | 134 }; |
135 | 135 |
136 } // namespace notifier | 136 } // namespace notifier |
137 | 137 |
138 #endif // CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ | 138 #endif // JINGLE_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ |
OLD | NEW |