OLD | NEW |
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 #ifndef JINGLE_NOTIFIER_BASE_NOTIFIER_OPTIONS_H_ | 5 #ifndef JINGLE_NOTIFIER_BASE_NOTIFIER_OPTIONS_H_ |
6 #define JINGLE_NOTIFIER_BASE_NOTIFIER_OPTIONS_H_ | 6 #define JINGLE_NOTIFIER_BASE_NOTIFIER_OPTIONS_H_ |
7 | 7 |
8 #include "jingle/notifier/base/notification_method.h" | 8 #include "jingle/notifier/base/notification_method.h" |
9 #include "net/base/host_port_pair.h" | 9 #include "net/base/host_port_pair.h" |
10 | 10 |
11 namespace notifier { | 11 namespace notifier { |
12 | 12 |
13 struct NotifierOptions { | 13 struct NotifierOptions { |
14 NotifierOptions() | 14 NotifierOptions() |
15 : use_chrome_async_socket(true), | 15 : try_ssltcp_first(false), |
16 try_ssltcp_first(false), | |
17 notification_method(kDefaultNotificationMethod) {} | 16 notification_method(kDefaultNotificationMethod) {} |
18 | 17 |
19 NotifierOptions(const bool use_chrome_async_socket, | 18 NotifierOptions(const bool try_ssltcp_first, |
20 const bool try_ssltcp_first, | |
21 const net::HostPortPair& xmpp_host_port, | 19 const net::HostPortPair& xmpp_host_port, |
22 NotificationMethod notification_method) | 20 NotificationMethod notification_method) |
23 : use_chrome_async_socket(use_chrome_async_socket), | 21 : try_ssltcp_first(try_ssltcp_first), |
24 try_ssltcp_first(try_ssltcp_first), | |
25 xmpp_host_port(xmpp_host_port), | 22 xmpp_host_port(xmpp_host_port), |
26 notification_method(notification_method) {} | 23 notification_method(notification_method) {} |
27 | 24 |
28 // Indicates whether to use the chrome-socket-based buzz::AsyncSocket | |
29 // implementation for notifications. | |
30 bool use_chrome_async_socket; | |
31 | |
32 // Indicates that the SSLTCP port (443) is to be tried before the the XMPP | 25 // Indicates that the SSLTCP port (443) is to be tried before the the XMPP |
33 // port (5222) during login. | 26 // port (5222) during login. |
34 bool try_ssltcp_first; | 27 bool try_ssltcp_first; |
35 | 28 |
36 // Contains a custom URL and port for the notification server, if one is to | 29 // Contains a custom URL and port for the notification server, if one is to |
37 // be used. Empty otherwise. | 30 // be used. Empty otherwise. |
38 net::HostPortPair xmpp_host_port; | 31 net::HostPortPair xmpp_host_port; |
39 | 32 |
40 // Indicates the method used by sync clients while sending and listening to | 33 // Indicates the method used by sync clients while sending and listening to |
41 // notifications. | 34 // notifications. |
42 NotificationMethod notification_method; | 35 NotificationMethod notification_method; |
43 }; | 36 }; |
44 | 37 |
45 } // namespace notifier | 38 } // namespace notifier |
46 | 39 |
47 #endif // JINGLE_NOTIFIER_BASE_NOTIFIER_OPTIONS_H_ | 40 #endif // JINGLE_NOTIFIER_BASE_NOTIFIER_OPTIONS_H_ |
OLD | NEW |