| Index: chrome/browser/chromeos/drive/file_system/truncate_operation.h
|
| diff --git a/chrome/browser/chromeos/drive/file_system/truncate_operation.h b/chrome/browser/chromeos/drive/file_system/truncate_operation.h
|
| index f27b485d45b57f534b79dc66e6e2fe752c56bcd5..0a6d5e7231d148bb13012bbf1744a0041e034499 100644
|
| --- a/chrome/browser/chromeos/drive/file_system/truncate_operation.h
|
| +++ b/chrome/browser/chromeos/drive/file_system/truncate_operation.h
|
| @@ -28,7 +28,7 @@ class ResourceMetadata;
|
|
|
| namespace file_system {
|
|
|
| -class OperationObserver;
|
| +class OperationDelegate;
|
| class DownloadOperation;
|
|
|
| // This class encapsulates the drive Truncate function. It is responsible for
|
| @@ -38,7 +38,7 @@ class DownloadOperation;
|
| class TruncateOperation {
|
| public:
|
| TruncateOperation(base::SequencedTaskRunner* blocking_task_runner,
|
| - OperationObserver* observer,
|
| + OperationDelegate* delegate,
|
| JobScheduler* scheduler,
|
| internal::ResourceMetadata* metadata,
|
| internal::FileCache* cache,
|
| @@ -67,7 +67,7 @@ class TruncateOperation {
|
| FileError error);
|
|
|
| scoped_refptr<base::SequencedTaskRunner> blocking_task_runner_;
|
| - OperationObserver* observer_;
|
| + OperationDelegate* delegate_;
|
| internal::ResourceMetadata* metadata_;
|
| internal::FileCache* cache_;
|
|
|
|
|