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

Side by Side Diff: sync/internal_api/public/sessions/sync_session_snapshot.cc

Issue 10680013: Remove unused fields found by clang's new Wunused-private-fields. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "sync/internal_api/public/sessions/sync_session_snapshot.h" 5 #include "sync/internal_api/public/sessions/sync_session_snapshot.h"
6 6
7 #include "base/json/json_writer.h" 7 #include "base/json/json_writer.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 9
10 namespace csync { 10 namespace csync {
11 namespace sessions { 11 namespace sessions {
12 12
13 SyncSessionSnapshot::SyncSessionSnapshot() 13 SyncSessionSnapshot::SyncSessionSnapshot()
14 : num_server_changes_remaining_(0), 14 : is_share_usable_(false),
15 is_share_usable_(false),
16 has_more_to_sync_(false), 15 has_more_to_sync_(false),
17 is_silenced_(false), 16 is_silenced_(false),
18 num_encryption_conflicts_(0), 17 num_encryption_conflicts_(0),
19 num_hierarchy_conflicts_(0), 18 num_hierarchy_conflicts_(0),
20 num_simple_conflicts_(0), 19 num_simple_conflicts_(0),
21 num_server_conflicts_(0), 20 num_server_conflicts_(0),
22 notifications_enabled_(false), 21 notifications_enabled_(false),
23 num_entries_(0), 22 num_entries_(0),
24 retry_scheduled_(false) { 23 retry_scheduled_(false) {
25 } 24 }
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 base::Time SyncSessionSnapshot::sync_start_time() const { 164 base::Time SyncSessionSnapshot::sync_start_time() const {
166 return sync_start_time_; 165 return sync_start_time_;
167 } 166 }
168 167
169 bool SyncSessionSnapshot::retry_scheduled() const { 168 bool SyncSessionSnapshot::retry_scheduled() const {
170 return retry_scheduled_; 169 return retry_scheduled_;
171 } 170 }
172 171
173 } // namespace sessions 172 } // namespace sessions
174 } // namespace csync 173 } // namespace csync
OLDNEW
« no previous file with comments | « sync/internal_api/public/sessions/sync_session_snapshot.h ('k') | webkit/fileapi/file_system_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698