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

Unified Diff: chrome/browser/sync/engine/sync_process_state.h

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
« no previous file with comments | « chrome/browser/sync/engine/sync_cycle_state.h ('k') | chrome/browser/sync/engine/sync_process_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/engine/sync_process_state.h
===================================================================
--- chrome/browser/sync/engine/sync_process_state.h (revision 26817)
+++ chrome/browser/sync/engine/sync_process_state.h (working copy)
@@ -289,21 +289,23 @@
private:
// For testing.
SyncProcessState()
- : account_name_(PSTR("")),
+ : num_sync_cycles_(0),
+ silenced_until_(0),
+ connection_manager_(NULL),
+ account_name_(PSTR("")),
dirman_(NULL),
+ resolver_(NULL),
+ model_safe_worker_(NULL),
syncer_event_channel_(NULL),
- connection_manager_(NULL),
- model_safe_worker_(NULL),
- resolver_(NULL),
- syncer_stuck_(false),
- num_sync_cycles_(0),
- silenced_until_(0),
error_rate_(0),
current_sync_timestamp_(0),
servers_latest_timestamp_(0),
+ syncing_(false),
+ invalid_store_(false),
+ syncer_stuck_(false),
error_commits_(0),
+ conflicting_commits_(0),
stalled_commits_(0),
- conflicting_commits_(0),
consecutive_problem_get_updates_(0),
consecutive_problem_commits_(0),
consecutive_transient_error_commits_(0),
@@ -311,9 +313,7 @@
successful_commits_(0),
dirty_(false),
auth_dirty_(false),
- auth_failed_(false),
- syncing_(false),
- invalid_store_(false) {}
+ auth_failed_(false) {}
ServerConnectionManager* connection_manager_;
const PathString account_name_;
« no previous file with comments | « chrome/browser/sync/engine/sync_cycle_state.h ('k') | chrome/browser/sync/engine/sync_process_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698