Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(920)

Unified Diff: jingle/notifier/communicator/connection_options.h

Issue 2809056: Rewrote handing of auto-reconnection and network changes for sync notifier. (Closed)
Patch Set: Fixed bug Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « jingle/notifier/communicator/auto_reconnect.cc ('k') | jingle/notifier/communicator/connection_options.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/communicator/connection_options.h
diff --git a/jingle/notifier/communicator/connection_options.h b/jingle/notifier/communicator/connection_options.h
index de09910843e475cc0f9b684fdcd6f541ad37d61f..4f24b4493abdce18056b28d41d2c735cc7359b0c 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_;
« no previous file with comments | « jingle/notifier/communicator/auto_reconnect.cc ('k') | jingle/notifier/communicator/connection_options.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698