| Index: chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.cc
|
| diff --git a/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.cc b/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.cc
|
| index ccdb1e2b65c36a020ee983436602b740bf68930e..80f26162462905aee2608744f7cfcd6b38b985de 100644
|
| --- a/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.cc
|
| +++ b/chrome/browser/sync_file_system/drive_backend/remote_to_local_syncer.cc
|
| @@ -74,19 +74,6 @@ scoped_ptr<FileMetadata> GetFileMetadata(MetadataDatabase* database,
|
| return metadata.Pass();
|
| }
|
|
|
| -template <typename R, typename S, typename T>
|
| -R ComposeFunction(const base::Callback<T()>& g,
|
| - const base::Callback<R(S)>& f) {
|
| - return f.Run(g.Run());
|
| -}
|
| -
|
| -template <typename R, typename S, typename T>
|
| -base::Callback<R()> CreateComposedFunction(
|
| - const base::Callback<T()>& g,
|
| - const base::Callback<R(S)>& f) {
|
| - return base::Bind(&ComposeFunction<R, S, T>, g, f);
|
| -}
|
| -
|
| } // namespace
|
|
|
| RemoteToLocalSyncer::RemoteToLocalSyncer(SyncEngineContext* sync_context)
|
|
|