1 // Copyright 2019 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "components/browser_sync/browser_sync_client.h"
6 
7 #include "components/sync/model/model_type_store_service.h"
8 
9 namespace browser_sync {
10 
11 BrowserSyncClient::BrowserSyncClient() = default;
12 
13 BrowserSyncClient::~BrowserSyncClient() = default;
14 
GetSyncDataPath()15 base::FilePath BrowserSyncClient::GetSyncDataPath() {
16   return GetModelTypeStoreService()->GetSyncDataPath();
17 }
18 
19 }  // namespace browser_sync
20