// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/sync/test/mock_sync_service.h" namespace syncer { MockSyncService::MockSyncService() = default; MockSyncService::~MockSyncService() = default; syncer::SyncUserSettingsMock* MockSyncService::GetMockUserSettings() { … } syncer::SyncUserSettings* MockSyncService::GetUserSettings() { … } const syncer::SyncUserSettings* MockSyncService::GetUserSettings() const { … } } // namespace syncer