OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 JINGLE_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ | 5 #ifndef JINGLE_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ |
6 #define JINGLE_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ | 6 #define JINGLE_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "jingle/notifier/base/xmpp_connection.h" | 10 #include "jingle/notifier/base/xmpp_connection.h" |
11 #include "jingle/notifier/communicator/connection_settings.h" | 11 #include "jingle/notifier/communicator/connection_settings.h" |
12 #include "jingle/notifier/communicator/login_settings.h" | 12 #include "jingle/notifier/communicator/login_settings.h" |
13 #include "talk/xmpp/xmppengine.h" | 13 #include "webrtc/libjingle/xmpp/xmppengine.h" |
14 | 14 |
15 namespace buzz { | 15 namespace buzz { |
16 class XmppTaskParentInterface; | 16 class XmppTaskParentInterface; |
17 } // namespace buzz | 17 } // namespace buzz |
18 | 18 |
19 namespace notifier { | 19 namespace notifier { |
20 | 20 |
21 struct ServerInformation; | 21 struct ServerInformation; |
22 | 22 |
23 // Handles all of the aspects of a single login attempt. By | 23 // Handles all of the aspects of a single login attempt. By |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 const ConnectionSettingsList settings_list_; | 73 const ConnectionSettingsList settings_list_; |
74 ConnectionSettingsList::const_iterator current_settings_; | 74 ConnectionSettingsList::const_iterator current_settings_; |
75 scoped_ptr<XmppConnection> xmpp_connection_; | 75 scoped_ptr<XmppConnection> xmpp_connection_; |
76 | 76 |
77 DISALLOW_COPY_AND_ASSIGN(SingleLoginAttempt); | 77 DISALLOW_COPY_AND_ASSIGN(SingleLoginAttempt); |
78 }; | 78 }; |
79 | 79 |
80 } // namespace notifier | 80 } // namespace notifier |
81 | 81 |
82 #endif // JINGLE_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ | 82 #endif // JINGLE_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ |
OLD | NEW |