summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync_file_system/remote_file_sync_service.cc
blob: 105c25900bb99ed825acddb19961196f597a1cff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2013 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.

#include "chrome/browser/sync_file_system/remote_file_sync_service.h"

#include "chrome/browser/sync_file_system/drive_backend/sync_engine.h"

namespace sync_file_system {

scoped_ptr<RemoteFileSyncService>
RemoteFileSyncService::CreateForBrowserContext(
    content::BrowserContext* context,
    TaskLogger* task_logger) {
  return drive_backend::SyncEngine::CreateForBrowserContext(context,
                                                            task_logger);
}

void RemoteFileSyncService::AppendDependsOnFactories(
    std::set<BrowserContextKeyedServiceFactory*>* factories) {
  drive_backend::SyncEngine::AppendDependsOnFactories(factories);
}

}  // namespace sync_file_system