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_COMMON_NET_NOTIFIER_COMMUNICATOR_XMPP_CONNECTION_GENERATOR_H_ | 5 #ifndef JINGLE_NOTIFIER_COMMUNICATOR_XMPP_CONNECTION_GENERATOR_H_ |
6 #define CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_XMPP_CONNECTION_GENERATOR_H_ | 6 #define JINGLE_NOTIFIER_COMMUNICATOR_XMPP_CONNECTION_GENERATOR_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
11 #include "net/base/address_list.h" | 11 #include "net/base/address_list.h" |
12 #include "net/base/completion_callback.h" | 12 #include "net/base/completion_callback.h" |
13 #include "net/base/host_port_pair.h" | 13 #include "net/base/host_port_pair.h" |
14 #include "net/base/host_resolver.h" | 14 #include "net/base/host_resolver.h" |
15 #include "net/base/net_log.h" | 15 #include "net/base/net_log.h" |
16 #include "talk/base/scoped_ptr.h" | 16 #include "talk/base/scoped_ptr.h" |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 bool successfully_resolved_dns_; | 84 bool successfully_resolved_dns_; |
85 int first_dns_error_; | 85 int first_dns_error_; |
86 const ConnectionOptions* options_; | 86 const ConnectionOptions* options_; |
87 | 87 |
88 talk_base::Task* parent_; | 88 talk_base::Task* parent_; |
89 DISALLOW_COPY_AND_ASSIGN(XmppConnectionGenerator); | 89 DISALLOW_COPY_AND_ASSIGN(XmppConnectionGenerator); |
90 }; | 90 }; |
91 | 91 |
92 } // namespace notifier | 92 } // namespace notifier |
93 | 93 |
94 #endif // CHROME_COMMON_NET_NOTIFIER_COMMUNICATOR_XMPP_CONNECTION_GENERATOR_H_ | 94 #endif // JINGLE_NOTIFIER_COMMUNICATOR_XMPP_CONNECTION_GENERATOR_H_ |
OLD | NEW |