summaryrefslogtreecommitdiffstats
path: root/jingle/notifier/base/notifier_options.h
diff options
context:
space:
mode:
Diffstat (limited to 'jingle/notifier/base/notifier_options.h')
-rw-r--r--jingle/notifier/base/notifier_options.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/jingle/notifier/base/notifier_options.h b/jingle/notifier/base/notifier_options.h
index 32374cf..289b7d8 100644
--- a/jingle/notifier/base/notifier_options.h
+++ b/jingle/notifier/base/notifier_options.h
@@ -12,23 +12,16 @@ namespace notifier {
struct NotifierOptions {
NotifierOptions()
- : use_chrome_async_socket(true),
- try_ssltcp_first(false),
+ : try_ssltcp_first(false),
notification_method(kDefaultNotificationMethod) {}
- NotifierOptions(const bool use_chrome_async_socket,
- const bool try_ssltcp_first,
+ NotifierOptions(const bool try_ssltcp_first,
const net::HostPortPair& xmpp_host_port,
NotificationMethod notification_method)
- : use_chrome_async_socket(use_chrome_async_socket),
- try_ssltcp_first(try_ssltcp_first),
+ : try_ssltcp_first(try_ssltcp_first),
xmpp_host_port(xmpp_host_port),
notification_method(notification_method) {}
- // Indicates whether to use the chrome-socket-based buzz::AsyncSocket
- // implementation for notifications.
- bool use_chrome_async_socket;
-
// Indicates that the SSLTCP port (443) is to be tried before the the XMPP
// port (5222) during login.
bool try_ssltcp_first;