Wed, 31 Dec 2014 06:09:35 +0100
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_FileSystemPermissionRequest_h |
michael@0 | 8 | #define mozilla_dom_FileSystemPermissionRequest_h |
michael@0 | 9 | |
michael@0 | 10 | #include "PCOMContentPermissionRequestChild.h" |
michael@0 | 11 | #include "nsAutoPtr.h" |
michael@0 | 12 | #include "nsContentPermissionHelper.h" |
michael@0 | 13 | #include "nsIRunnable.h" |
michael@0 | 14 | |
michael@0 | 15 | class nsCString; |
michael@0 | 16 | class nsPIDOMWindow; |
michael@0 | 17 | |
michael@0 | 18 | namespace mozilla { |
michael@0 | 19 | namespace dom { |
michael@0 | 20 | |
michael@0 | 21 | class FileSystemTaskBase; |
michael@0 | 22 | |
michael@0 | 23 | class FileSystemPermissionRequest MOZ_FINAL |
michael@0 | 24 | : public nsIContentPermissionRequest |
michael@0 | 25 | , public nsIRunnable |
michael@0 | 26 | , public PCOMContentPermissionRequestChild |
michael@0 | 27 | { |
michael@0 | 28 | public: |
michael@0 | 29 | // Request permission for the given task. |
michael@0 | 30 | static void |
michael@0 | 31 | RequestForTask(FileSystemTaskBase* aTask); |
michael@0 | 32 | |
michael@0 | 33 | // Overrides PCOMContentPermissionRequestChild |
michael@0 | 34 | |
michael@0 | 35 | virtual void |
michael@0 | 36 | IPDLRelease() MOZ_OVERRIDE; |
michael@0 | 37 | |
michael@0 | 38 | bool |
michael@0 | 39 | Recv__delete__(const bool& aAllow, |
michael@0 | 40 | const InfallibleTArray<PermissionChoice>& aChoices) MOZ_OVERRIDE; |
michael@0 | 41 | |
michael@0 | 42 | NS_DECL_THREADSAFE_ISUPPORTS |
michael@0 | 43 | NS_DECL_NSICONTENTPERMISSIONREQUEST |
michael@0 | 44 | NS_DECL_NSIRUNNABLE |
michael@0 | 45 | private: |
michael@0 | 46 | FileSystemPermissionRequest(FileSystemTaskBase* aTask); |
michael@0 | 47 | |
michael@0 | 48 | virtual |
michael@0 | 49 | ~FileSystemPermissionRequest(); |
michael@0 | 50 | |
michael@0 | 51 | nsCString mPermissionType; |
michael@0 | 52 | nsCString mPermissionAccess; |
michael@0 | 53 | nsRefPtr<FileSystemTaskBase> mTask; |
michael@0 | 54 | nsCOMPtr<nsPIDOMWindow> mWindow; |
michael@0 | 55 | nsCOMPtr<nsIPrincipal> mPrincipal; |
michael@0 | 56 | }; |
michael@0 | 57 | |
michael@0 | 58 | } // namespace dom |
michael@0 | 59 | } // namespace mozilla |
michael@0 | 60 | |
michael@0 | 61 | #endif // mozilla_dom_FileSystemPermissionRequest_h |