Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(639)

Unified Diff: chrome/browser/chromeos/extensions/file_manager/private_api_tasks.h

Issue 23740004: Files.app: Let the file browser private tasks APIs use the auto-generated helper classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed the test. Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698