summaryrefslogtreecommitdiffstats
path: root/sync/internal_api/public/util/immutable_unittest.cc
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-28 22:43:58 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-28 22:43:58 +0000
commit65f173550226cb0dcf577183a462d48c47764ee3 (patch)
tree9d4451edfc037f39658b804f95a3fbdbc85a7bd5 /sync/internal_api/public/util/immutable_unittest.cc
parent7953ef8eea2001287dbd233421226ad3f0e16448 (diff)
downloadchromium_src-65f173550226cb0dcf577183a462d48c47764ee3.zip
chromium_src-65f173550226cb0dcf577183a462d48c47764ee3.tar.gz
chromium_src-65f173550226cb0dcf577183a462d48c47764ee3.tar.bz2
[Sync] Rename csync namespace to syncer
Everyone was confused by 'csync'. 'syncer' seems more understandable. (Note that we can't use the 'sync' namespace since sync() is a function from unistd.h.) BUG=10662035 TEST= TBR=jhawkins@chromium.org,pkasting@chromium.org Review URL: https://chromiumcodereview.appspot.com/10698014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@144820 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/internal_api/public/util/immutable_unittest.cc')
-rw-r--r--sync/internal_api/public/util/immutable_unittest.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/sync/internal_api/public/util/immutable_unittest.cc b/sync/internal_api/public/util/immutable_unittest.cc
index e124b70..f8494b6 100644
--- a/sync/internal_api/public/util/immutable_unittest.cc
+++ b/sync/internal_api/public/util/immutable_unittest.cc
@@ -16,7 +16,7 @@
#include "base/memory/ref_counted.h"
#include "testing/gtest/include/gtest/gtest.h"
-namespace csync {
+namespace syncer {
// Helper class that keeps track of the token passed in at
// construction and how many times that token is copied.
@@ -102,20 +102,20 @@ void swap(ADLToken& t1, ADLToken& t2) {
t1.Swap(&t2);
}
-} // namespace csync
+} // namespace syncer
// Allowed by the standard (17.4.3.1/1).
namespace std {
template <>
-void swap(csync::SpecializationToken& t1,
- csync::SpecializationToken& t2) {
+void swap(syncer::SpecializationToken& t1,
+ syncer::SpecializationToken& t2) {
t1.Swap(&t2);
}
} // namespace
-namespace csync {
+namespace syncer {
namespace {
class ImmutableTest : public ::testing::Test {};
@@ -247,4 +247,4 @@ TEST_F(ImmutableTest, Set) {
}
} // namespace
-} // namespace csync
+} // namespace syncer