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

Side by Side Diff: chrome/common/net/notifier/communicator/login.cc

Issue 1956001: Moved XMPP notifier library from chrome/browser/sync to chrome/common.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/browser/sync/notifier/communicator/login.h" 7 #include "chrome/common/net/notifier/communicator/login.h"
8 8
9 #include "chrome/browser/sync/notifier/base/network_status_detector_task.h" 9 #include "chrome/common/net/notifier/base/network_status_detector_task.h"
10 #include "chrome/browser/sync/notifier/base/time.h" 10 #include "chrome/common/net/notifier/base/time.h"
11 #include "chrome/browser/sync/notifier/base/timer.h" 11 #include "chrome/common/net/notifier/base/timer.h"
12 #include "chrome/browser/sync/notifier/communicator/auto_reconnect.h" 12 #include "chrome/common/net/notifier/communicator/auto_reconnect.h"
13 #include "chrome/browser/sync/notifier/communicator/connection_options.h" 13 #include "chrome/common/net/notifier/communicator/connection_options.h"
14 #include "chrome/browser/sync/notifier/communicator/login_settings.h" 14 #include "chrome/common/net/notifier/communicator/login_settings.h"
15 #include "chrome/browser/sync/notifier/communicator/product_info.h" 15 #include "chrome/common/net/notifier/communicator/product_info.h"
16 #include "chrome/browser/sync/notifier/communicator/single_login_attempt.h" 16 #include "chrome/common/net/notifier/communicator/single_login_attempt.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/taskrunner.h" 20 #include "talk/base/taskrunner.h"
21 #include "talk/xmllite/xmlelement.h" 21 #include "talk/xmllite/xmlelement.h"
22 #include "talk/xmpp/asyncsocket.h" 22 #include "talk/xmpp/asyncsocket.h"
23 #include "talk/xmpp/prexmppauth.h" 23 #include "talk/xmpp/prexmppauth.h"
24 #include "talk/xmpp/xmppclient.h" 24 #include "talk/xmpp/xmppclient.h"
25 #include "talk/xmpp/xmppclientsettings.h" 25 #include "talk/xmpp/xmppclientsettings.h"
26 #include "talk/xmpp/xmppengine.h" 26 #include "talk/xmpp/xmppengine.h"
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 349
350 if (single_attempt_) { 350 if (single_attempt_) {
351 single_attempt_->Abort(); 351 single_attempt_->Abort();
352 single_attempt_ = NULL; 352 single_attempt_ = NULL;
353 } 353 }
354 354
355 StartConnection(); 355 StartConnection();
356 } 356 }
357 357
358 } // namespace notifier 358 } // namespace notifier
OLDNEW
« no previous file with comments | « chrome/common/net/notifier/communicator/login.h ('k') | chrome/common/net/notifier/communicator/login_failure.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698