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 #include <string> | 5 #include <string> |
6 | 6 |
7 #include "chrome/common/net/notifier/communicator/login.h" | 7 #include "jingle/notifier/communicator/login.h" |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/time.h" | 10 #include "base/time.h" |
11 #include "chrome/common/net/notifier/communicator/auto_reconnect.h" | 11 #include "jingle/notifier/communicator/auto_reconnect.h" |
12 #include "chrome/common/net/notifier/communicator/connection_options.h" | 12 #include "jingle/notifier/communicator/connection_options.h" |
13 #include "chrome/common/net/notifier/communicator/login_settings.h" | 13 #include "jingle/notifier/communicator/login_settings.h" |
14 #include "chrome/common/net/notifier/communicator/product_info.h" | 14 #include "jingle/notifier/communicator/product_info.h" |
15 #include "chrome/common/net/notifier/communicator/single_login_attempt.h" | 15 #include "jingle/notifier/communicator/single_login_attempt.h" |
16 #include "net/base/host_port_pair.h" | 16 #include "net/base/host_port_pair.h" |
17 #include "talk/base/common.h" | 17 #include "talk/base/common.h" |
18 #include "talk/base/firewallsocketserver.h" | 18 #include "talk/base/firewallsocketserver.h" |
19 #include "talk/base/logging.h" | 19 #include "talk/base/logging.h" |
20 #include "talk/base/physicalsocketserver.h" | 20 #include "talk/base/physicalsocketserver.h" |
21 #include "talk/base/taskrunner.h" | 21 #include "talk/base/taskrunner.h" |
22 #include "talk/xmllite/xmlelement.h" | 22 #include "talk/xmllite/xmlelement.h" |
23 #include "talk/xmpp/asyncsocket.h" | 23 #include "talk/xmpp/asyncsocket.h" |
24 #include "talk/xmpp/prexmppauth.h" | 24 #include "talk/xmpp/prexmppauth.h" |
25 #include "talk/xmpp/xmppclient.h" | 25 #include "talk/xmpp/xmppclient.h" |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 | 335 |
336 if (single_attempt_) { | 336 if (single_attempt_) { |
337 single_attempt_->Abort(); | 337 single_attempt_->Abort(); |
338 single_attempt_ = NULL; | 338 single_attempt_ = NULL; |
339 } | 339 } |
340 | 340 |
341 StartConnection(); | 341 StartConnection(); |
342 } | 342 } |
343 | 343 |
344 } // namespace notifier | 344 } // namespace notifier |
OLD | NEW |