| Index: chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| diff --git a/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc b/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| index c636e35ed25b8f472e0d61777ddcfc5bb7830bcf..14f3e63799ec961dea05ad4d92d5698a1aaff3e8 100644
|
| --- a/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| +++ b/chrome/browser/sync_file_system/local/canned_syncable_file_system.cc
|
| @@ -469,7 +469,7 @@ File::Error CannedSyncableFileSystem::ReadDirectory(
|
| int64 CannedSyncableFileSystem::Write(
|
| net::URLRequestContext* url_request_context,
|
| const FileSystemURL& url,
|
| - scoped_ptr<storage::BlobDataHandle> blob_data_handle) {
|
| + scoped_ptr<storage::BlobDataSnapshotHandle> blob_data_handle) {
|
| return RunOnThread<int64>(io_task_runner_.get(),
|
| FROM_HERE,
|
| base::Bind(&CannedSyncableFileSystem::DoWrite,
|
| @@ -687,7 +687,7 @@ void CannedSyncableFileSystem::DoReadDirectory(
|
| void CannedSyncableFileSystem::DoWrite(
|
| net::URLRequestContext* url_request_context,
|
| const FileSystemURL& url,
|
| - scoped_ptr<storage::BlobDataHandle> blob_data_handle,
|
| + scoped_ptr<storage::BlobDataSnapshotHandle> blob_data_handle,
|
| const WriteCallback& callback) {
|
| EXPECT_TRUE(io_task_runner_->RunsTasksOnCurrentThread());
|
| EXPECT_TRUE(is_filesystem_opened_);
|
|
|