| Index: chrome/browser/chromeos/extensions/file_manager/private_api_tasks.h
|
| diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.h b/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.h
|
| index ad376d7fd901d0a317dbee89e664c467950e2fa6..fd4a7bd68fdaf0eb6c4a57f4767751cf792e14a8 100644
|
| --- a/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.h
|
| +++ b/chrome/browser/chromeos/extensions/file_manager/private_api_tasks.h
|
| @@ -29,10 +29,8 @@ class FileBrowserPrivateExecuteTaskFunction
|
| DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.executeTask",
|
| FILEBROWSERPRIVATE_EXECUTETASK)
|
|
|
| - FileBrowserPrivateExecuteTaskFunction();
|
| -
|
| protected:
|
| - virtual ~FileBrowserPrivateExecuteTaskFunction();
|
| + virtual ~FileBrowserPrivateExecuteTaskFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| virtual bool RunImpl() OVERRIDE;
|
| @@ -47,10 +45,8 @@ class FileBrowserPrivateGetFileTasksFunction
|
| DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.getFileTasks",
|
| FILEBROWSERPRIVATE_GETFILETASKS)
|
|
|
| - FileBrowserPrivateGetFileTasksFunction();
|
| -
|
| protected:
|
| - virtual ~FileBrowserPrivateGetFileTasksFunction();
|
| + virtual ~FileBrowserPrivateGetFileTasksFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| virtual bool RunImpl() OVERRIDE;
|
| @@ -62,10 +58,8 @@ class FileBrowserPrivateSetDefaultTaskFunction : public SyncExtensionFunction {
|
| DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.setDefaultTask",
|
| FILEBROWSERPRIVATE_SETDEFAULTTASK)
|
|
|
| - FileBrowserPrivateSetDefaultTaskFunction();
|
| -
|
| protected:
|
| - virtual ~FileBrowserPrivateSetDefaultTaskFunction();
|
| + virtual ~FileBrowserPrivateSetDefaultTaskFunction() {}
|
|
|
| // SyncExtensionFunction overrides.
|
| virtual bool RunImpl() OVERRIDE;
|
|
|