summaryrefslogtreecommitdiffstats
path: root/sync/api/sync_change.cc
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-27 03:15:50 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-27 03:15:50 +0000
commitcb02f6137832121af125b0c7c7ef425bca749dfb (patch)
tree98db52d582414dc4fd87f75fceca8875538bf74c /sync/api/sync_change.cc
parenta571ce8531f2fe4a9ac4b615f75a5b5147459576 (diff)
downloadchromium_src-cb02f6137832121af125b0c7c7ef425bca749dfb.zip
chromium_src-cb02f6137832121af125b0c7c7ef425bca749dfb.tar.gz
chromium_src-cb02f6137832121af125b0c7c7ef425bca749dfb.tar.bz2
[Sync] Put everything in sync/api into csync namespace
BUG=128060 TEST= TBR=pkasting@chromium.org Review URL: https://chromiumcodereview.appspot.com/10662035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144385 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/api/sync_change.cc')
-rw-r--r--sync/api/sync_change.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/sync/api/sync_change.cc b/sync/api/sync_change.cc
index 627c19b..ef9063b 100644
--- a/sync/api/sync_change.cc
+++ b/sync/api/sync_change.cc
@@ -6,6 +6,8 @@
#include <ostream>
+namespace csync {
+
SyncChange::SyncChange() : change_type_(ACTION_INVALID) {
}
@@ -71,3 +73,5 @@ std::string SyncChange::ToString() const {
void PrintTo(const SyncChange& sync_change, std::ostream* os) {
*os << sync_change.ToString();
}
+
+} // namespace csync