| Index: chrome/browser/chromeos/drive/file_system.h
|
| diff --git a/chrome/browser/chromeos/drive/file_system.h b/chrome/browser/chromeos/drive/file_system.h
|
| index b4e14d63868f7523078da1cc40cf9085fefca256..05d751012040b68d7804b50bef6e50fc6a8d2a1f 100644
|
| --- a/chrome/browser/chromeos/drive/file_system.h
|
| +++ b/chrome/browser/chromeos/drive/file_system.h
|
| @@ -12,7 +12,7 @@
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/observer_list.h"
|
| #include "chrome/browser/chromeos/drive/change_list_loader_observer.h"
|
| -#include "chrome/browser/chromeos/drive/file_system/operation_observer.h"
|
| +#include "chrome/browser/chromeos/drive/file_system/operation_delegate.h"
|
| #include "chrome/browser/chromeos/drive/file_system_interface.h"
|
| #include "google_apis/drive/gdata_errorcode.h"
|
|
|
| @@ -53,7 +53,6 @@ class DownloadOperation;
|
| class GetFileForSavingOperation;
|
| class MoveOperation;
|
| class OpenFileOperation;
|
| -class OperationObserver;
|
| class RemoveOperation;
|
| class SearchOperation;
|
| class TouchOperation;
|
| @@ -63,7 +62,7 @@ class TruncateOperation;
|
| // The production implementation of FileSystemInterface.
|
| class FileSystem : public FileSystemInterface,
|
| public internal::ChangeListLoaderObserver,
|
| - public file_system::OperationObserver {
|
| + public file_system::OperationDelegate {
|
| public:
|
| FileSystem(PrefService* pref_service,
|
| EventLogger* logger,
|
| @@ -162,7 +161,7 @@ class FileSystem : public FileSystemInterface,
|
| const GetFilePathCallback& callback)
|
| OVERRIDE;
|
|
|
| - // file_system::OperationObserver overrides.
|
| + // file_system::OperationDelegate overrides.
|
| virtual void OnFileChangedByOperation(
|
| const FileChange& changed_files) OVERRIDE;
|
| virtual void OnEntryUpdatedByOperation(const std::string& local_id) OVERRIDE;
|
|
|