OLD | NEW |
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 #ifndef CHROME_BROWSER_SYNC_NOTIFIER_COMMUNICATOR_LOGIN_H_ | 5 #ifndef CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_LOGIN_H_ |
6 #define CHROME_BROWSER_SYNC_NOTIFIER_COMMUNICATOR_LOGIN_H_ | 6 #define CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_LOGIN_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "chrome/browser/sync/notifier/base/sigslotrepeater.h" | 10 #include "chrome/common/net/notifier/base/sigslotrepeater.h" |
11 #include "chrome/browser/sync/notifier/base/time.h" | 11 #include "chrome/common/net/notifier/base/time.h" |
12 #include "talk/base/proxyinfo.h" | 12 #include "talk/base/proxyinfo.h" |
13 #include "talk/base/scoped_ptr.h" | 13 #include "talk/base/scoped_ptr.h" |
14 #include "talk/base/sigslot.h" | 14 #include "talk/base/sigslot.h" |
15 #include "talk/xmpp/xmppengine.h" | 15 #include "talk/xmpp/xmppengine.h" |
16 | 16 |
17 namespace buzz { | 17 namespace buzz { |
18 class XmppClient; | 18 class XmppClient; |
19 class XmppEngine; | 19 class XmppEngine; |
20 class XmppClientSettings; | 20 class XmppClientSettings; |
21 } // namespace buzz | 21 } // namespace buzz |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 std::string google_user_; | 144 std::string google_user_; |
145 talk_base::ProxyInfo proxy_info_; | 145 talk_base::ProxyInfo proxy_info_; |
146 | 146 |
147 Timer* disconnect_timer_; | 147 Timer* disconnect_timer_; |
148 | 148 |
149 DISALLOW_COPY_AND_ASSIGN(Login); | 149 DISALLOW_COPY_AND_ASSIGN(Login); |
150 }; | 150 }; |
151 | 151 |
152 } // namespace notifier | 152 } // namespace notifier |
153 | 153 |
154 #endif // CHROME_BROWSER_SYNC_NOTIFIER_COMMUNICATOR_LOGIN_H_ | 154 #endif // CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_LOGIN_H_ |
OLD | NEW |