dom/filesystem/GetFileOrDirectoryTask.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
michael@0 2 /* vim: set ts=2 et sw=2 tw=80: */
michael@0 3 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 4 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
michael@0 5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 6
michael@0 7 #ifndef mozilla_dom_GetFileOrDirectory_h
michael@0 8 #define mozilla_dom_GetFileOrDirectory_h
michael@0 9
michael@0 10 #include "mozilla/dom/FileSystemTaskBase.h"
michael@0 11 #include "nsAutoPtr.h"
michael@0 12
michael@0 13 namespace mozilla {
michael@0 14 namespace dom {
michael@0 15
michael@0 16 class GetFileOrDirectoryTask MOZ_FINAL
michael@0 17 : public FileSystemTaskBase
michael@0 18 {
michael@0 19 public:
michael@0 20 // If aDirectoryOnly is set, we should ensure that the target is a directory.
michael@0 21 GetFileOrDirectoryTask(FileSystemBase* aFileSystem,
michael@0 22 const nsAString& aTargetPath,
michael@0 23 bool aDirectoryOnly);
michael@0 24 GetFileOrDirectoryTask(FileSystemBase* aFileSystem,
michael@0 25 const FileSystemGetFileOrDirectoryParams& aParam,
michael@0 26 FileSystemRequestParent* aParent);
michael@0 27
michael@0 28 virtual
michael@0 29 ~GetFileOrDirectoryTask();
michael@0 30
michael@0 31 already_AddRefed<Promise>
michael@0 32 GetPromise();
michael@0 33
michael@0 34 virtual void
michael@0 35 GetPermissionAccessType(nsCString& aAccess) const MOZ_OVERRIDE;
michael@0 36 protected:
michael@0 37 virtual FileSystemParams
michael@0 38 GetRequestParams(const nsString& aFileSystem) const MOZ_OVERRIDE;
michael@0 39
michael@0 40 virtual FileSystemResponseValue
michael@0 41 GetSuccessRequestResult() const MOZ_OVERRIDE;
michael@0 42
michael@0 43 virtual void
michael@0 44 SetSuccessRequestResult(const FileSystemResponseValue& aValue) MOZ_OVERRIDE;
michael@0 45
michael@0 46 virtual nsresult
michael@0 47 Work() MOZ_OVERRIDE;
michael@0 48
michael@0 49 virtual void
michael@0 50 HandlerCallback() MOZ_OVERRIDE;
michael@0 51
michael@0 52 private:
michael@0 53 nsRefPtr<Promise> mPromise;
michael@0 54 nsString mTargetRealPath;
michael@0 55 // Whether we get a directory.
michael@0 56 bool mIsDirectory;
michael@0 57 nsCOMPtr<nsIDOMFile> mTargetFile;
michael@0 58 };
michael@0 59
michael@0 60 } // namespace dom
michael@0 61 } // namespace mozilla
michael@0 62
michael@0 63 #endif // mozilla_dom_GetFileOrDirectory_h

mercurial