| Index: chrome/browser/chromeos/file_system_provider/operations/move_entry.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/move_entry.h b/chrome/browser/chromeos/file_system_provider/operations/move_entry.h
|
| index 08aa4416b43e85f9f5ffb89eb0644b948919f5eb..fcdd214cdb7c9a1a4c205454eafab4b6b15377cd 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/move_entry.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/move_entry.h
|
| @@ -17,18 +17,15 @@ namespace base {
|
| class FilePath;
|
| } // namespace base
|
|
|
| -namespace extensions {
|
| -class EventRouter;
|
| -} // namespace extensions
|
| -
|
| namespace chromeos {
|
| namespace file_system_provider {
|
| namespace operations {
|
|
|
| // Copies an entry (recursively if a directory). Created per request.
|
| -class MoveEntry : public Operation {
|
| +template <class DestinationPolicy>
|
| +class MoveEntry : public Operation<DestinationPolicy> {
|
| public:
|
| - MoveEntry(extensions::EventRouter* event_router,
|
| + MoveEntry(typename DestinationPolicy::EventRouterType* event_router,
|
| const ProvidedFileSystemInfo& file_system_info,
|
| const base::FilePath& source_path,
|
| const base::FilePath& target_path,
|
| @@ -49,7 +46,7 @@ class MoveEntry : public Operation {
|
| base::FilePath target_path_;
|
| const storage::AsyncFileUtil::StatusCallback callback_;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(MoveEntry);
|
| + DISALLOW_COPY_AND_ASSIGN(MoveEntry<DestinationPolicy>);
|
| };
|
|
|
| } // namespace operations
|
|
|