summaryrefslogtreecommitdiffstats
path: root/sync/engine/syncer_proto_util.h
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-21 20:48:36 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-21 20:48:36 +0000
commitd78354a5e74c5208dd9ebe83717b22223c1e1272 (patch)
tree4c616bbbfbf1776055d250644e1a47d435b11c8a /sync/engine/syncer_proto_util.h
parent41fed979ae412d2475a2860ea1ec95531bebb5af (diff)
downloadchromium_src-d78354a5e74c5208dd9ebe83717b22223c1e1272.zip
chromium_src-d78354a5e74c5208dd9ebe83717b22223c1e1272.tar.gz
chromium_src-d78354a5e74c5208dd9ebe83717b22223c1e1272.tar.bz2
[Sync] Rename browser_sync to csync in sync/
Update all references from chrome. Leave possibly-extraneous csync:: qualifications in sync/ for now. (This will be cleaned up once everything in sync/ is in csync::.) BUG=128060 TEST= TBR=jhawkins@chromium.org Review URL: https://chromiumcodereview.appspot.com/10600002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143449 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/engine/syncer_proto_util.h')
-rw-r--r--sync/engine/syncer_proto_util.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sync/engine/syncer_proto_util.h b/sync/engine/syncer_proto_util.h
index 3856509..d9ccddc 100644
--- a/sync/engine/syncer_proto_util.h
+++ b/sync/engine/syncer_proto_util.h
@@ -25,7 +25,7 @@ class ClientToServerResponse;
class EntitySpecifics;
} // namespace sync_pb
-namespace browser_sync {
+namespace csync {
namespace sessions {
class SyncProtocolError;
@@ -111,7 +111,7 @@ class SyncerProtoUtil {
// Post the message using the scm, and do some processing on the returned
// headers. Decode the server response.
- static bool PostAndProcessHeaders(browser_sync::ServerConnectionManager* scm,
+ static bool PostAndProcessHeaders(csync::ServerConnectionManager* scm,
sessions::SyncSession* session,
const ClientToServerMessage& msg,
sync_pb::ClientToServerResponse* response);
@@ -122,7 +122,7 @@ class SyncerProtoUtil {
static void HandleThrottleError(
const SyncProtocolError& error,
const base::TimeTicks& throttled_until,
- browser_sync::ThrottledDataTypeTracker* tracker,
+ csync::ThrottledDataTypeTracker* tracker,
sessions::SyncSession::Delegate* delegate);
friend class SyncerProtoUtilTest;
@@ -135,6 +135,6 @@ class SyncerProtoUtil {
DISALLOW_COPY_AND_ASSIGN(SyncerProtoUtil);
};
-} // namespace browser_sync
+} // namespace csync
#endif // SYNC_ENGINE_SYNCER_PROTO_UTIL_H_