| Index: chrome/browser/chromeos/drive/file_system/remove_operation.h
|
| diff --git a/chrome/browser/chromeos/drive/file_system/remove_operation.h b/chrome/browser/chromeos/drive/file_system/remove_operation.h
|
| index 585da857297157ea9804af978fcebe31fb826c89..fc127ca104fec78104353a57f09694aa10d2656c 100644
|
| --- a/chrome/browser/chromeos/drive/file_system/remove_operation.h
|
| +++ b/chrome/browser/chromeos/drive/file_system/remove_operation.h
|
| @@ -28,14 +28,14 @@ class ResourceMetadata;
|
|
|
| namespace file_system {
|
|
|
| -class OperationObserver;
|
| +class OperationDelegate;
|
|
|
| // This class encapsulates the drive Remove function. It is responsible for
|
| // moving the removed entry to the trash.
|
| class RemoveOperation {
|
| public:
|
| RemoveOperation(base::SequencedTaskRunner* blocking_task_runner,
|
| - OperationObserver* observer,
|
| + OperationDelegate* delegate,
|
| internal::ResourceMetadata* metadata,
|
| internal::FileCache* cache);
|
| ~RemoveOperation();
|
| @@ -58,7 +58,7 @@ class RemoveOperation {
|
| FileError error);
|
|
|
| scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_;
|
| - OperationObserver* observer_;
|
| + OperationDelegate* delegate_;
|
| internal::ResourceMetadata* metadata_;
|
| internal::FileCache* cache_;
|
|
|
|
|