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

Side by Side Diff: sync/internal_api/public/engine/sync_status.cc

Issue 10698014: [Sync] Rename csync namespace to syncer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments 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
« no previous file with comments | « sync/internal_api/public/engine/sync_status.h ('k') | sync/internal_api/public/http_bridge.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/engine/sync_status.h" 5 #include "sync/internal_api/public/engine/sync_status.h"
6 6
7 namespace csync { 7 namespace syncer {
8 8
9 SyncStatus::SyncStatus() 9 SyncStatus::SyncStatus()
10 : notifications_enabled(false), 10 : notifications_enabled(false),
11 notifications_received(0), 11 notifications_received(0),
12 encryption_conflicts(0), 12 encryption_conflicts(0),
13 hierarchy_conflicts(0), 13 hierarchy_conflicts(0),
14 simple_conflicts(0), 14 simple_conflicts(0),
15 server_conflicts(0), 15 server_conflicts(0),
16 committed_count(0), 16 committed_count(0),
17 syncing(false), 17 syncing(false),
(...skipping 11 matching lines...) Expand all
29 sync_cycles_without_commits(0), 29 sync_cycles_without_commits(0),
30 useless_sync_cycles(0), 30 useless_sync_cycles(0),
31 useful_sync_cycles(0), 31 useful_sync_cycles(0),
32 cryptographer_ready(false), 32 cryptographer_ready(false),
33 crypto_has_pending_keys(false) { 33 crypto_has_pending_keys(false) {
34 } 34 }
35 35
36 SyncStatus::~SyncStatus() { 36 SyncStatus::~SyncStatus() {
37 } 37 }
38 38
39 } // namespace csync 39 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/internal_api/public/engine/sync_status.h ('k') | sync/internal_api/public/http_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698