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-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/internal_api/public/util/immutable_unittest.cc
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/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 ea0b29b..e124b70 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 browser_sync {
+namespace csync {
// 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 browser_sync
+} // namespace csync
// Allowed by the standard (17.4.3.1/1).
namespace std {
template <>
-void swap(browser_sync::SpecializationToken& t1,
- browser_sync::SpecializationToken& t2) {
+void swap(csync::SpecializationToken& t1,
+ csync::SpecializationToken& t2) {
t1.Swap(&t2);
}
} // namespace
-namespace browser_sync {
+namespace csync {
namespace {
class ImmutableTest : public ::testing::Test {};
@@ -247,4 +247,4 @@ TEST_F(ImmutableTest, Set) {
}
} // namespace
-} // namespace browser_sync
+} // namespace csync