diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-27 21:14:33 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-27 21:14:33 +0000 |
commit | 7fdad3a542e60dd9426e103b813421f3d1b37b40 (patch) | |
tree | ae69f246354040d3502f7642ff7e4f90093b5e2c /jingle/notifier/communicator/connection_options.h | |
parent | c347f49fc32d3a35873040992ef0c7374de41332 (diff) | |
download | chromium_src-7fdad3a542e60dd9426e103b813421f3d1b37b40.zip chromium_src-7fdad3a542e60dd9426e103b813421f3d1b37b40.tar.gz chromium_src-7fdad3a542e60dd9426e103b813421f3d1b37b40.tar.bz2 |
Rewrote handing of auto-reconnection and network changes for sync notifier.
BUG=47883
TEST=manual (turning network connection off and on)
Review URL: http://codereview.chromium.org/2809056
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53839 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'jingle/notifier/communicator/connection_options.h')
-rw-r--r-- | jingle/notifier/communicator/connection_options.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/jingle/notifier/communicator/connection_options.h b/jingle/notifier/communicator/connection_options.h index de09910..4f24b44 100644 --- a/jingle/notifier/communicator/connection_options.h +++ b/jingle/notifier/communicator/connection_options.h @@ -17,7 +17,6 @@ class ConnectionOptions { ConnectionOptions(); bool autodetect_proxy() const { return autodetect_proxy_; } - bool auto_reconnect() const { return auto_reconnect_; } const std::string& proxy_host() const { return proxy_host_; } int proxy_port() const { return proxy_port_; } bool use_proxy_auth() const { return use_proxy_auth_; } @@ -26,7 +25,6 @@ class ConnectionOptions { bool allow_unverified_certs() const { return allow_unverified_certs_; } void set_autodetect_proxy(bool f) { autodetect_proxy_ = f; } - void set_auto_reconnect(bool f) { auto_reconnect_ = f; } void set_proxy_host(const std::string& val) { proxy_host_ = val; } void set_proxy_port(int val) { proxy_port_ = val; } void set_use_proxy_auth(bool f) { use_proxy_auth_ = f; } @@ -41,7 +39,6 @@ class ConnectionOptions { private: bool autodetect_proxy_; - bool auto_reconnect_; std::string proxy_host_; int proxy_port_; bool use_proxy_auth_; |