| Index: components/browser_sync/browser/test_profile_sync_service.h
|
| diff --git a/components/browser_sync/browser/test_profile_sync_service.h b/components/browser_sync/browser/test_profile_sync_service.h
|
| deleted file mode 100644
|
| index 22609c2b4c45cbaac4ef322b5b7cc4fe0fd072bb..0000000000000000000000000000000000000000
|
| --- a/components/browser_sync/browser/test_profile_sync_service.h
|
| +++ /dev/null
|
| @@ -1,50 +0,0 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef COMPONENTS_BROWSER_SYNC_BROWSER_TEST_PROFILE_SYNC_SERVICE_H_
|
| -#define COMPONENTS_BROWSER_SYNC_BROWSER_TEST_PROFILE_SYNC_SERVICE_H_
|
| -
|
| -#include "base/macros.h"
|
| -#include "components/browser_sync/browser/profile_sync_service.h"
|
| -#include "components/sync/base/weak_handle.h"
|
| -#include "components/sync/driver/data_type_manager.h"
|
| -#include "components/sync/js/js_event_handler.h"
|
| -#include "components/sync/test/engine/test_id_factory.h"
|
| -
|
| -namespace sync_driver {
|
| -class SyncPrefs;
|
| -} // namespace sync_driver
|
| -
|
| -class TestProfileSyncService : public ProfileSyncService {
|
| - public:
|
| - explicit TestProfileSyncService(InitParams init_params);
|
| -
|
| - ~TestProfileSyncService() override;
|
| -
|
| - void OnConfigureDone(
|
| - const sync_driver::DataTypeManager::ConfigureResult& result) override;
|
| -
|
| - // We implement our own version to avoid some DCHECKs.
|
| - syncer::UserShare* GetUserShare() const override;
|
| -
|
| - syncer::TestIdFactory* id_factory();
|
| -
|
| - // Raise visibility to ease testing.
|
| - using ProfileSyncService::NotifyObservers;
|
| -
|
| - sync_driver::SyncPrefs* sync_prefs() { return &sync_prefs_; }
|
| -
|
| - protected:
|
| - // Return NULL handle to use in backend initialization to avoid receiving
|
| - // js messages on UI loop when it's being destroyed, which are not deleted
|
| - // and cause memory leak in test.
|
| - syncer::WeakHandle<syncer::JsEventHandler> GetJsEventHandler() override;
|
| -
|
| - private:
|
| - syncer::TestIdFactory id_factory_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(TestProfileSyncService);
|
| -};
|
| -
|
| -#endif // COMPONENTS_BROWSER_SYNC_BROWSER_TEST_PROFILE_SYNC_SERVICE_H_
|
|
|