Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: jingle/notifier/communicator/login.cc

Issue 2885005: Move chrome/common/net/notifier to jingle/notifier so that it can be used by remoting/remoting.gyp. (Closed) Base URL: git://codf21.jail.google.com/chromium.git
Patch Set: rebased Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « jingle/notifier/communicator/login.h ('k') | jingle/notifier/communicator/login_connection_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698