Index: sync/internal_api/sync_manager_impl.h |
diff --git a/sync/internal_api/sync_manager_impl.h b/sync/internal_api/sync_manager_impl.h |
index 6accdab6b42679e907e378214c702da779c3dce3..de242befcbde796f79ad65fe8aa6b72314d6d315 100644 |
--- a/sync/internal_api/sync_manager_impl.h |
+++ b/sync/internal_api/sync_manager_impl.h |
@@ -68,7 +68,6 @@ class SyncManagerImpl : |
const std::string& sync_server_and_path, |
int sync_server_port, |
bool use_ssl, |
- const scoped_refptr<base::TaskRunner>& blocking_task_runner, |
scoped_ptr<HttpPostProviderFactory> post_factory, |
const std::vector<ModelSafeWorker*>& workers, |
ExtensionsActivityMonitor* extensions_activity_monitor, |
@@ -111,6 +110,7 @@ class SyncManagerImpl : |
virtual void StopSyncingForShutdown(const base::Closure& callback) OVERRIDE; |
virtual void ShutdownOnSyncThread() OVERRIDE; |
virtual UserShare* GetUserShare() OVERRIDE; |
+ virtual const std::string cache_guid() OVERRIDE; |
virtual bool ReceivedExperiment(Experiments* experiments) OVERRIDE; |
virtual bool HasUnsyncedItems() OVERRIDE; |
virtual SyncEncryptionHandler* GetEncryptionHandler() OVERRIDE; |
@@ -302,10 +302,6 @@ class SyncManagerImpl : |
// WeakHandle when we construct it. |
WeakHandle<SyncManagerImpl> weak_handle_this_; |
- // |blocking_task_runner| is a TaskRunner to be used for tasks that |
- // may block on disk I/O. |
- scoped_refptr<base::TaskRunner> blocking_task_runner_; |
- |
// We give a handle to share_ to clients of the API for use when constructing |
// any transaction type. |
UserShare share_; |