diff options
author | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-13 05:10:26 +0000 |
---|---|---|
committer | rlarocque@chromium.org <rlarocque@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-13 05:10:26 +0000 |
commit | 08230555e497c5d5f50c03c1703636943c143497 (patch) | |
tree | 7083abfb34fb309d35e85cd0291f640168e323e9 /components/sync_driver | |
parent | d0c44b74dc1c764c51ca4e9c0158265dca631120 (diff) | |
download | chromium_src-08230555e497c5d5f50c03c1703636943c143497.zip chromium_src-08230555e497c5d5f50c03c1703636943c143497.tar.gz chromium_src-08230555e497c5d5f50c03c1703636943c143497.tar.bz2 |
sync: Move NonBlockingTypeProcessor to sync/engine
Moves NonBlockingTypeProcessor from sync/internal_api to sync/engine.
It's become increasingly clear to me that the NonBlockingTypeProcessor
will be too big to expose outside of sync. When it comes time to export
its functionality, we'll need to define a wrapper class with a simpler
interface. This means that there's no benefit to keeping it in
internal_api.
There is a benefit to moving this to sync/engine. In this location, it
should be able to collaborate more closely with its sibling, the
NonBlockingTypeProcessorCore.
We intend to start adding lots of code to this class soon. It's a good
idea to get this move out of the way first, so we can have a better git
history in the end.
BUG=351005
Review URL: https://codereview.chromium.org/280693003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270025 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/sync_driver')
3 files changed, 3 insertions, 3 deletions
diff --git a/components/sync_driver/non_blocking_data_type_controller.cc b/components/sync_driver/non_blocking_data_type_controller.cc index a1ee251..55af708 100644 --- a/components/sync_driver/non_blocking_data_type_controller.cc +++ b/components/sync_driver/non_blocking_data_type_controller.cc @@ -7,7 +7,7 @@ #include "base/bind.h" #include "base/bind_helpers.h" #include "base/location.h" -#include "sync/internal_api/public/non_blocking_type_processor.h" +#include "sync/engine/non_blocking_type_processor.h" namespace browser_sync { diff --git a/components/sync_driver/non_blocking_data_type_controller_unittest.cc b/components/sync_driver/non_blocking_data_type_controller_unittest.cc index b1c8dc6..32e475f 100644 --- a/components/sync_driver/non_blocking_data_type_controller_unittest.cc +++ b/components/sync_driver/non_blocking_data_type_controller_unittest.cc @@ -11,8 +11,8 @@ #include "base/sequenced_task_runner.h" #include "base/test/test_simple_task_runner.h" #include "components/sync_driver/non_blocking_data_type_controller.h" +#include "sync/engine/non_blocking_type_processor.h" #include "sync/internal_api/public/base/model_type.h" -#include "sync/internal_api/public/non_blocking_type_processor.h" #include "sync/internal_api/public/sync_core_proxy.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/components/sync_driver/non_blocking_data_type_manager.cc b/components/sync_driver/non_blocking_data_type_manager.cc index 7ab3497..19ed50e 100644 --- a/components/sync_driver/non_blocking_data_type_manager.cc +++ b/components/sync_driver/non_blocking_data_type_manager.cc @@ -6,7 +6,7 @@ #include "base/sequenced_task_runner.h" #include "components/sync_driver/non_blocking_data_type_controller.h" -#include "sync/internal_api/public/non_blocking_type_processor.h" +#include "sync/engine/non_blocking_type_processor.h" namespace browser_sync { |