Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / components / sync_driver / generic_change_processor_factory.cc
1 // Copyright 2014 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/sync_driver/generic_change_processor_factory.h"
6
7 #include "components/sync_driver/generic_change_processor.h"
8 #include "sync/api/syncable_service.h"
9
10 namespace sync_driver {
11
12
13 GenericChangeProcessorFactory::GenericChangeProcessorFactory() {}
14
15 GenericChangeProcessorFactory::~GenericChangeProcessorFactory() {}
16
17 scoped_ptr<GenericChangeProcessor>
18 GenericChangeProcessorFactory::CreateGenericChangeProcessor(
19     syncer::ModelType type,
20     syncer::UserShare* user_share,
21     DataTypeErrorHandler* error_handler,
22     const base::WeakPtr<syncer::SyncableService>& local_service,
23     const base::WeakPtr<syncer::SyncMergeResult>& merge_result,
24     SyncApiComponentFactory* sync_factory) {
25   DCHECK(user_share);
26   return make_scoped_ptr(new GenericChangeProcessor(
27                              type,
28                              error_handler,
29                              local_service,
30                              merge_result,
31                              user_share,
32                              sync_factory,
33                              local_service->GetAttachmentStore())).Pass();
34 }
35
36 }  // namespace sync_driver