| Index: chrome/browser/chromeos/drive/file_system/remove_operation.cc
|
| diff --git a/chrome/browser/chromeos/drive/file_system/remove_operation.cc b/chrome/browser/chromeos/drive/file_system/remove_operation.cc
|
| index e871e84bb1df15816a305e17adfb3dfbf00e4936..a6bc88d8f35648c3e435f871666014d7a1008edd 100644
|
| --- a/chrome/browser/chromeos/drive/file_system/remove_operation.cc
|
| +++ b/chrome/browser/chromeos/drive/file_system/remove_operation.cc
|
| @@ -36,7 +36,7 @@ void RemoveOperation::Remove(
|
| DCHECK(!callback.is_null());
|
|
|
| // Get the edit URL of an entry at |file_path|.
|
| - file_system_->ResourceMetadata()->GetEntryInfoByPath(
|
| + file_system_->GetResourceMetadata()->GetEntryInfoByPath(
|
| file_path,
|
| base::Bind(
|
| &RemoveOperation::RemoveAfterGetEntryInfo,
|
| @@ -85,7 +85,7 @@ void RemoveOperation::RemoveResourceLocally(
|
| return;
|
| }
|
|
|
| - file_system_->ResourceMetadata()->RemoveEntryFromParent(
|
| + file_system_->GetResourceMetadata()->RemoveEntryFromParent(
|
| resource_id,
|
| base::Bind(&RemoveOperation::NotifyDirectoryChanged,
|
| weak_ptr_factory_.GetWeakPtr(),
|
|
|