summaryrefslogtreecommitdiffstats
path: root/sync/engine/syncer.cc
diff options
context:
space:
mode:
authorrlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-20 18:58:26 +0000
committerrlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-20 18:58:26 +0000
commit15732679ce96d261ff3e838d3f8cdb6ff86a2189 (patch)
tree00fe7e29bf4e67d4bd765be5d637811cee3bbaef /sync/engine/syncer.cc
parent77e4dc088d316a0507c6ff25b5d1f9f060cb30d8 (diff)
downloadchromium_src-15732679ce96d261ff3e838d3f8cdb6ff86a2189.zip
chromium_src-15732679ce96d261ff3e838d3f8cdb6ff86a2189.tar.gz
chromium_src-15732679ce96d261ff3e838d3f8cdb6ff86a2189.tar.bz2
Split syncable.{h,cc} into several files
The only functional change was to remove the dirkernel_ member from BaseTransaction, which was to reduce the number of includes required. Everything else is just moving code around, and updating includes, forward declarations, and 'using' statements. BUG=103332 TEST= Review URL: https://chromiumcodereview.appspot.com/10579036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143218 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/engine/syncer.cc')
-rw-r--r--sync/engine/syncer.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/sync/engine/syncer.cc b/sync/engine/syncer.cc
index 01c8ae6..da4e27b 100644
--- a/sync/engine/syncer.cc
+++ b/sync/engine/syncer.cc
@@ -25,13 +25,12 @@
#include "sync/engine/syncproto.h"
#include "sync/engine/throttled_data_type_tracker.h"
#include "sync/engine/verify_updates_command.h"
+#include "sync/syncable/mutable_entry.h"
#include "sync/syncable/syncable-inl.h"
-#include "sync/syncable/syncable.h"
using base::Time;
using base::TimeDelta;
using sync_pb::ClientCommand;
-using syncable::Blob;
using syncable::IS_UNAPPLIED_UPDATE;
using syncable::SERVER_CTIME;
using syncable::SERVER_IS_DEL;
@@ -42,8 +41,6 @@ using syncable::SERVER_PARENT_ID;
using syncable::SERVER_POSITION_IN_PARENT;
using syncable::SERVER_SPECIFICS;
using syncable::SERVER_VERSION;
-using syncable::SYNCER;
-using syncable::WriteTransaction;
namespace browser_sync {