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_LOGIN_H_ | 5 #ifndef JINGLE_NOTIFIER_COMMUNICATOR_LOGIN_H_ |
6 #define JINGLE_NOTIFIER_COMMUNICATOR_LOGIN_H_ | 6 #define JINGLE_NOTIFIER_COMMUNICATOR_LOGIN_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "base/time.h" | 14 #include "base/time/time.h" |
15 #include "base/timer.h" | 15 #include "base/timer/timer.h" |
16 #include "jingle/notifier/base/server_information.h" | 16 #include "jingle/notifier/base/server_information.h" |
17 #include "jingle/notifier/communicator/login_settings.h" | 17 #include "jingle/notifier/communicator/login_settings.h" |
18 #include "jingle/notifier/communicator/single_login_attempt.h" | 18 #include "jingle/notifier/communicator/single_login_attempt.h" |
19 #include "net/base/network_change_notifier.h" | 19 #include "net/base/network_change_notifier.h" |
20 #include "talk/xmpp/xmppengine.h" | 20 #include "talk/xmpp/xmppengine.h" |
21 | 21 |
22 namespace buzz { | 22 namespace buzz { |
23 class XmppClient; | 23 class XmppClient; |
24 class XmppClientSettings; | 24 class XmppClientSettings; |
25 class XmppTaskParentInterface; | 25 class XmppTaskParentInterface; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 // reconnection state. | 122 // reconnection state. |
123 base::TimeDelta reconnect_interval_; | 123 base::TimeDelta reconnect_interval_; |
124 base::OneShotTimer<Login> reconnect_timer_; | 124 base::OneShotTimer<Login> reconnect_timer_; |
125 | 125 |
126 DISALLOW_COPY_AND_ASSIGN(Login); | 126 DISALLOW_COPY_AND_ASSIGN(Login); |
127 }; | 127 }; |
128 | 128 |
129 } // namespace notifier | 129 } // namespace notifier |
130 | 130 |
131 #endif // JINGLE_NOTIFIER_COMMUNICATOR_LOGIN_H_ | 131 #endif // JINGLE_NOTIFIER_COMMUNICATOR_LOGIN_H_ |
OLD | NEW |