| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "jingle/notifier/base/xmpp_connection.h" | 12 #include "jingle/notifier/base/xmpp_connection.h" |
| 13 #include "jingle/notifier/communicator/connection_settings.h" | 13 #include "jingle/notifier/communicator/connection_settings.h" |
| 14 #include "jingle/notifier/communicator/login_settings.h" | 14 #include "jingle/notifier/communicator/login_settings.h" |
| 15 #include "webrtc/libjingle/xmpp/xmppengine.h" | 15 #include "third_party/libjingle_xmpp/xmpp/xmppengine.h" |
| 16 | 16 |
| 17 namespace buzz { | 17 namespace buzz { |
| 18 class XmppTaskParentInterface; | 18 class XmppTaskParentInterface; |
| 19 } // namespace buzz | 19 } // namespace buzz |
| 20 | 20 |
| 21 namespace notifier { | 21 namespace notifier { |
| 22 | 22 |
| 23 struct ServerInformation; | 23 struct ServerInformation; |
| 24 | 24 |
| 25 // Handles all of the aspects of a single login attempt. By | 25 // Handles all of the aspects of a single login attempt. By |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 const ConnectionSettingsList settings_list_; | 75 const ConnectionSettingsList settings_list_; |
| 76 ConnectionSettingsList::const_iterator current_settings_; | 76 ConnectionSettingsList::const_iterator current_settings_; |
| 77 std::unique_ptr<XmppConnection> xmpp_connection_; | 77 std::unique_ptr<XmppConnection> xmpp_connection_; |
| 78 | 78 |
| 79 DISALLOW_COPY_AND_ASSIGN(SingleLoginAttempt); | 79 DISALLOW_COPY_AND_ASSIGN(SingleLoginAttempt); |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 } // namespace notifier | 82 } // namespace notifier |
| 83 | 83 |
| 84 #endif // JINGLE_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ | 84 #endif // JINGLE_NOTIFIER_COMMUNICATOR_SINGLE_LOGIN_ATTEMPT_H_ |
| OLD | NEW |