| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 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/api/model_type_store.h" | |
| 6 | |
| 7 #include "components/sync/core/model_type_store_impl.h" | |
| 8 | |
| 9 namespace syncer { | |
| 10 | |
| 11 // static | |
| 12 void ModelTypeStore::CreateInMemoryStoreForTest(const InitCallback& callback) { | |
| 13 ModelTypeStoreImpl::CreateInMemoryStoreForTest(callback); | |
| 14 } | |
| 15 | |
| 16 // static | |
| 17 void ModelTypeStore::CreateStore( | |
| 18 const ModelType type, | |
| 19 const std::string& path, | |
| 20 scoped_refptr<base::SequencedTaskRunner> blocking_task_runner, | |
| 21 const InitCallback& callback) { | |
| 22 ModelTypeStoreImpl::CreateStore(type, path, blocking_task_runner, callback); | |
| 23 } | |
| 24 | |
| 25 ModelTypeStore::~ModelTypeStore() {} | |
| 26 | |
| 27 ModelTypeStore::WriteBatch::WriteBatch() {} | |
| 28 | |
| 29 ModelTypeStore::WriteBatch::~WriteBatch() {} | |
| 30 | |
| 31 } // namespace syncer | |
| OLD | NEW |