Chromium Code Reviews| Index: chrome/browser/extensions/extension_file_browser_private_api.h |
| diff --git a/chrome/browser/extensions/extension_file_browser_private_api.h b/chrome/browser/extensions/extension_file_browser_private_api.h |
| index 83a37675c2c0469d4c4c63ab2fdd9878d43211a2..49527116b7d9a61ffa46fd471102b6cfa82c0470 100644 |
| --- a/chrome/browser/extensions/extension_file_browser_private_api.h |
| +++ b/chrome/browser/extensions/extension_file_browser_private_api.h |
| @@ -279,15 +279,19 @@ class GetMountPointsFunction |
| // Formats Device given its mount path. |
| class FormatDeviceFunction |
| - : public SyncExtensionFunction { |
| - public: |
| - FormatDeviceFunction(); |
| + : public FileBrowserFunction { |
| + public: |
| + FormatDeviceFunction(); |
| protected: |
| virtual ~FormatDeviceFunction(); |
| virtual bool RunImpl() OVERRIDE; |
| +// FileBrowserFunction overrides. |
| + virtual void GetLocalPathsResponseOnUIThread( |
| + const FilePathList& files, void* context) OVERRIDE; |
|
tbarzic
2011/08/10 21:04:56
does const FilePathList& files fit into previous l
sidor.dev
2011/08/10 22:38:17
Done + fixed others in that file.
|
| + |
| private: |
| DECLARE_EXTENSION_FUNCTION_NAME("fileBrowserPrivate.formatDevice"); |
| }; |