| Index: components/sync/core_impl/test/sync_manager_for_profile_sync_test.h
|
| diff --git a/sync/internal_api/test/sync_manager_for_profile_sync_test.h b/components/sync/core_impl/test/sync_manager_for_profile_sync_test.h
|
| similarity index 56%
|
| rename from sync/internal_api/test/sync_manager_for_profile_sync_test.h
|
| rename to components/sync/core_impl/test/sync_manager_for_profile_sync_test.h
|
| index 40234ce39a05ae3a9a925d33f18a6480a6e4826b..804299abe6f288f715ba04b84bdbec8ca1a4681b 100644
|
| --- a/sync/internal_api/test/sync_manager_for_profile_sync_test.h
|
| +++ b/components/sync/core_impl/test/sync_manager_for_profile_sync_test.h
|
| @@ -2,24 +2,22 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef SYNC_INTERNAL_API_TEST_SYNC_MANAGER_FOR_PROFILE_SYNC_TEST_H_
|
| -#define SYNC_INTERNAL_API_TEST_SYNC_MANAGER_FOR_PROFILE_SYNC_TEST_H_
|
| +#ifndef COMPONENTS_SYNC_CORE_IMPL_TEST_SYNC_MANAGER_FOR_PROFILE_SYNC_TEST_H_
|
| +#define COMPONENTS_SYNC_CORE_IMPL_TEST_SYNC_MANAGER_FOR_PROFILE_SYNC_TEST_H_
|
|
|
| #include <string>
|
|
|
| #include "base/callback.h"
|
| #include "base/compiler_specific.h"
|
| -#include "sync/internal_api/sync_manager_impl.h"
|
| +#include "components/sync/core_impl/sync_manager_impl.h"
|
|
|
| namespace syncer {
|
|
|
| // This class is used to help implement the TestProfileSyncService.
|
| // Those tests try to test sync without instantiating a real backend.
|
| -class SyncManagerForProfileSyncTest
|
| - : public syncer::SyncManagerImpl {
|
| +class SyncManagerForProfileSyncTest : public syncer::SyncManagerImpl {
|
| public:
|
| - SyncManagerForProfileSyncTest(std::string name,
|
| - base::Closure init_callback);
|
| + SyncManagerForProfileSyncTest(std::string name, base::Closure init_callback);
|
| ~SyncManagerForProfileSyncTest() override;
|
| void NotifyInitializationSuccess() override;
|
|
|
| @@ -29,4 +27,4 @@ class SyncManagerForProfileSyncTest
|
|
|
| } // namespace syncer
|
|
|
| -#endif // SYNC_INTERNAL_API_TEST_SYNC_MANAGER_FOR_PROFILE_SYNC_TEST_H_
|
| +#endif // COMPONENTS_SYNC_CORE_IMPL_TEST_SYNC_MANAGER_FOR_PROFILE_SYNC_TEST_H_
|
|
|