зеркало из https://github.com/mozilla/gecko-dev.git
55 строки
1.4 KiB
C++
55 строки
1.4 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=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 DOM_FS_FILESYSTEMHANDLE_H_
|
|
#define DOM_FS_FILESYSTEMHANDLE_H_
|
|
|
|
#include "nsCOMPtr.h"
|
|
#include "nsISupports.h"
|
|
#include "nsWrapperCache.h"
|
|
|
|
class nsIGlobalObject;
|
|
|
|
namespace mozilla {
|
|
|
|
class ErrorResult;
|
|
|
|
namespace dom {
|
|
|
|
class DOMString;
|
|
enum class FileSystemHandleKind : uint8_t;
|
|
class Promise;
|
|
|
|
class FileSystemHandle : public nsISupports, public nsWrapperCache {
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(FileSystemHandle)
|
|
|
|
// WebIDL Boilerplate
|
|
nsIGlobalObject* GetParentObject() const;
|
|
|
|
JSObject* WrapObject(JSContext* aCx,
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
// WebIDL Interface
|
|
virtual FileSystemHandleKind Kind() = 0;
|
|
|
|
void GetName(DOMString& aResult);
|
|
|
|
already_AddRefed<Promise> IsSameEntry(FileSystemHandle& aOther,
|
|
ErrorResult& aError);
|
|
|
|
protected:
|
|
virtual ~FileSystemHandle() = default;
|
|
|
|
nsCOMPtr<nsIGlobalObject> mGlobal;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // DOM_FS_FILESYSTEMHANDLE_H_
|