mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
117bb1a341
CLOSED TREE
Backed out changeset c23b8418e6be (bug 1060987)
Backed out changeset a8cddc6bdffc (bug 1061060)
Backed out changeset b5af5cbdac3f (bug 1060982
)
Backed out changeset 4912d451011a (bug 1060930)
Backed out changeset bdacbf453238 (bug 1061058)
Backed out changeset da6c71a8f5ae (bug 1060987)
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_dom_FileSystemPermissionRequest_h
|
|
#define mozilla_dom_FileSystemPermissionRequest_h
|
|
|
|
#include "nsAutoPtr.h"
|
|
#include "nsIRunnable.h"
|
|
#include "nsIContentPermissionPrompt.h"
|
|
#include "nsString.h"
|
|
|
|
class nsPIDOMWindow;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class FileSystemTaskBase;
|
|
|
|
class FileSystemPermissionRequest MOZ_FINAL
|
|
: public nsIContentPermissionRequest
|
|
, public nsIRunnable
|
|
{
|
|
public:
|
|
// Request permission for the given task.
|
|
static void
|
|
RequestForTask(FileSystemTaskBase* aTask);
|
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
NS_DECL_NSICONTENTPERMISSIONREQUEST
|
|
NS_DECL_NSIRUNNABLE
|
|
private:
|
|
FileSystemPermissionRequest(FileSystemTaskBase* aTask);
|
|
|
|
virtual
|
|
~FileSystemPermissionRequest();
|
|
|
|
nsCString mPermissionType;
|
|
nsCString mPermissionAccess;
|
|
nsRefPtr<FileSystemTaskBase> mTask;
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
|
nsCOMPtr<nsIPrincipal> mPrincipal;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_FileSystemPermissionRequest_h
|