OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_LOGIN_H_ | 5 #ifndef JINGLE_NOTIFIER_COMMUNICATOR_LOGIN_H_ |
6 #define CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_LOGIN_H_ | 6 #define JINGLE_NOTIFIER_COMMUNICATOR_LOGIN_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/time.h" | 10 #include "base/time.h" |
11 #include "base/timer.h" | 11 #include "base/timer.h" |
12 #include "chrome/common/net/notifier/base/sigslotrepeater.h" | 12 #include "jingle/notifier/base/sigslotrepeater.h" |
13 #include "chrome/common/net/notifier/communicator/auto_reconnect.h" | 13 #include "jingle/notifier/communicator/auto_reconnect.h" |
14 #include "chrome/common/net/notifier/communicator/login_connection_state.h" | 14 #include "jingle/notifier/communicator/login_connection_state.h" |
15 #include "net/base/network_change_notifier.h" | 15 #include "net/base/network_change_notifier.h" |
16 #include "talk/base/proxyinfo.h" | 16 #include "talk/base/proxyinfo.h" |
17 #include "talk/base/scoped_ptr.h" | 17 #include "talk/base/scoped_ptr.h" |
18 #include "talk/base/sigslot.h" | 18 #include "talk/base/sigslot.h" |
19 #include "talk/xmpp/xmppengine.h" | 19 #include "talk/xmpp/xmppengine.h" |
20 | 20 |
21 namespace buzz { | 21 namespace buzz { |
22 class XmppClient; | 22 class XmppClient; |
23 class XmppEngine; | 23 class XmppEngine; |
24 class XmppClientSettings; | 24 class XmppClientSettings; |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 std::string google_user_; | 141 std::string google_user_; |
142 talk_base::ProxyInfo proxy_info_; | 142 talk_base::ProxyInfo proxy_info_; |
143 | 143 |
144 base::OneShotTimer<Login> disconnect_timer_; | 144 base::OneShotTimer<Login> disconnect_timer_; |
145 | 145 |
146 DISALLOW_COPY_AND_ASSIGN(Login); | 146 DISALLOW_COPY_AND_ASSIGN(Login); |
147 }; | 147 }; |
148 | 148 |
149 } // namespace notifier | 149 } // namespace notifier |
150 | 150 |
151 #endif // CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_LOGIN_H_ | 151 #endif // JINGLE_NOTIFIER_COMMUNICATOR_LOGIN_H_ |
OLD | NEW |