OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "base/time.h" | 13 #include "base/time.h" |
14 #include "base/timer.h" | 14 #include "base/timer.h" |
15 #include "jingle/notifier/base/server_information.h" | 15 #include "jingle/notifier/base/server_information.h" |
16 #include "jingle/notifier/communicator/single_login_attempt.h" | 16 #include "jingle/notifier/communicator/single_login_attempt.h" |
17 #include "net/base/network_change_notifier.h" | 17 #include "net/base/network_change_notifier.h" |
18 #include "talk/xmpp/xmppengine.h" | 18 #include "talk/xmpp/xmppengine.h" |
19 | 19 |
20 namespace buzz { | 20 namespace buzz { |
21 class XmppClient; | 21 class XmppClient; |
22 class XmppEngine; | |
23 class XmppClientSettings; | 22 class XmppClientSettings; |
24 class XmppTaskParentInterface; | 23 class XmppTaskParentInterface; |
25 } // namespace buzz | 24 } // namespace buzz |
26 | 25 |
27 namespace net { | 26 namespace net { |
28 class URLRequestContextGetter; | 27 class URLRequestContextGetter; |
29 } // namespace net | 28 } // namespace net |
30 | 29 |
31 namespace notifier { | 30 namespace notifier { |
32 | 31 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 DISALLOW_COPY_AND_ASSIGN(Login); | 109 DISALLOW_COPY_AND_ASSIGN(Login); |
111 }; | 110 }; |
112 | 111 |
113 // Workaround for MSVS 2005 bug that fails to handle inheritance from a nested | 112 // Workaround for MSVS 2005 bug that fails to handle inheritance from a nested |
114 // class properly if it comes directly on a base class list. | 113 // class properly if it comes directly on a base class list. |
115 typedef Login::Delegate LoginDelegate; | 114 typedef Login::Delegate LoginDelegate; |
116 | 115 |
117 } // namespace notifier | 116 } // namespace notifier |
118 | 117 |
119 #endif // JINGLE_NOTIFIER_COMMUNICATOR_LOGIN_H_ | 118 #endif // JINGLE_NOTIFIER_COMMUNICATOR_LOGIN_H_ |
OLD | NEW |