diff options
author | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-20 18:58:26 +0000 |
---|---|---|
committer | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-20 18:58:26 +0000 |
commit | 15732679ce96d261ff3e838d3f8cdb6ff86a2189 (patch) | |
tree | 00fe7e29bf4e67d4bd765be5d637811cee3bbaef /sync/engine/apply_updates_command_unittest.cc | |
parent | 77e4dc088d316a0507c6ff25b5d1f9f060cb30d8 (diff) | |
download | chromium_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/apply_updates_command_unittest.cc')
-rw-r--r-- | sync/engine/apply_updates_command_unittest.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sync/engine/apply_updates_command_unittest.cc b/sync/engine/apply_updates_command_unittest.cc index 6ff6dae..e60c15f 100644 --- a/sync/engine/apply_updates_command_unittest.cc +++ b/sync/engine/apply_updates_command_unittest.cc @@ -14,8 +14,10 @@ #include "sync/protocol/bookmark_specifics.pb.h" #include "sync/protocol/password_specifics.pb.h" #include "sync/sessions/sync_session.h" -#include "sync/syncable/syncable.h" +#include "sync/syncable/mutable_entry.h" +#include "sync/syncable/read_transaction.h" #include "sync/syncable/syncable_id.h" +#include "sync/syncable/write_transaction.h" #include "sync/test/engine/fake_model_worker.h" #include "sync/test/engine/syncer_command_test.h" #include "sync/test/engine/test_id_factory.h" @@ -27,7 +29,6 @@ namespace browser_sync { using sessions::SyncSession; using std::string; -using syncable::Entry; using syncable::Id; using syncable::MutableEntry; using syncable::ReadTransaction; |