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

Unified Diff: sync/syncable/read_transaction.h

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, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sync/syncable/mutable_entry.h ('k') | sync/syncable/syncable_id_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/read_transaction.h
diff --git a/sync/syncable/read_transaction.h b/sync/syncable/read_transaction.h
index b8e34e8a1de74fb393fc56918868f689bd8382b2..a6c51f558985807d5703dbdcb7830737b4d9ca12 100644
--- a/sync/syncable/read_transaction.h
+++ b/sync/syncable/read_transaction.h
@@ -8,7 +8,7 @@
#include "sync/syncable/base_transaction.h"
-namespace csync {
+namespace syncer {
class ReadTransaction;
}
@@ -23,12 +23,12 @@ class ReadTransaction : public BaseTransaction {
virtual ~ReadTransaction();
protected: // Don't allow creation on heap, except by sync API wrapper.
- friend class csync::ReadTransaction;
+ friend class syncer::ReadTransaction;
void* operator new(size_t size) { return (::operator new)(size); }
DISALLOW_COPY_AND_ASSIGN(ReadTransaction);
};
-}
+} // namespace syncable
#endif // SYNC_SYNCABLE_READ_TRANSACTION_H_
« no previous file with comments | « sync/syncable/mutable_entry.h ('k') | sync/syncable/syncable_id_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698