Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Unified Diff: components/sync/model/model_type_store.cc

Issue 2863173002: [Sync] Switch ModelTypeStore* from blocking pool to post_task.h (Closed)
Patch Set: Self review. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/sync/model/model_type_store.h ('k') | components/sync/model_impl/model_type_store_backend.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/model/model_type_store.cc
diff --git a/components/sync/model/model_type_store.cc b/components/sync/model/model_type_store.cc
index fc8cb809bf8ef5707f66ee440f7633d0b82af3f2..6f14ade5151f22f454b80842a63a3970aff0be76 100644
--- a/components/sync/model/model_type_store.cc
+++ b/components/sync/model/model_type_store.cc
@@ -21,9 +21,8 @@ void ModelTypeStore::CreateInMemoryStoreForTest(ModelType type,
void ModelTypeStore::CreateStore(
ModelType type,
const std::string& path,
- scoped_refptr<base::SequencedTaskRunner> blocking_task_runner,
const InitCallback& callback) {
- ModelTypeStoreImpl::CreateStore(type, path, blocking_task_runner, callback);
+ ModelTypeStoreImpl::CreateStore(type, path, callback);
}
ModelTypeStore::~ModelTypeStore() {}
« no previous file with comments | « components/sync/model/model_type_store.h ('k') | components/sync/model_impl/model_type_store_backend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698