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

Unified Diff: chrome/browser/sync/engine/net/server_connection_manager.cc

Issue 211019: Fix compiling of sync on linux. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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
Index: chrome/browser/sync/engine/net/server_connection_manager.cc
===================================================================
--- chrome/browser/sync/engine/net/server_connection_manager.cc (revision 26817)
+++ chrome/browser/sync/engine/net/server_connection_manager.cc (working copy)
@@ -143,16 +143,20 @@
ServerConnectionManager::ServerConnectionManager(
const string& server, int port, bool use_ssl, const string& user_agent,
const string& client_id)
- : sync_server_(server), sync_server_port_(port),
+ : sync_server_(server),
+ sync_server_port_(port),
+ client_id_(client_id),
+ user_agent_(user_agent),
+ use_ssl_(use_ssl),
+ proto_sync_path_(kSyncServerSyncPath),
+ get_time_path_(kSyncServerGetTimePath),
+ error_count_(0),
channel_(new Channel(shutdown_event)),
- server_status_(HttpResponse::NONE), server_reachable_(false),
- client_id_(client_id), use_ssl_(use_ssl),
- user_agent_(user_agent),
+ server_status_(HttpResponse::NONE),
+ server_reachable_(false),
platform_(new PlatformMembers(user_agent)),
- reset_count_(0), error_count_(0),
- terminate_all_io_(false),
- proto_sync_path_(kSyncServerSyncPath),
- get_time_path_(kSyncServerGetTimePath) {
+ reset_count_(0),
+ terminate_all_io_(false) {
}
ServerConnectionManager::~ServerConnectionManager() {
« no previous file with comments | « chrome/browser/sync/engine/net/gaia_authenticator.cc ('k') | chrome/browser/sync/engine/process_commit_response_command.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698