mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
671d1a817e
Backed out changeset 7d06b68c44d0 (bug 1079335) Backed out changeset 92030169528e (bug 1079301) Backed out changeset c09d7f95554a (bug 1047483) Backed out changeset c199f1057d7e (bug 1047483) Backed out changeset 18830d07884c (bug 1047483) Backed out changeset e087289ccfbb (bug 1047483) Backed out changeset 6238ff5d3ed0 (bug 1047483) CLOSED TREE --HG-- rename : content/base/public/File.h => content/base/public/nsDOMFile.h rename : content/base/src/MultipartFileImpl.cpp => content/base/src/nsDOMBlobBuilder.cpp rename : content/base/src/MultipartFileImpl.h => content/base/src/nsDOMBlobBuilder.h rename : content/base/src/File.cpp => content/base/src/nsDOMFile.cpp
110 lines
2.3 KiB
C++
110 lines
2.3 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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_FileSystemBase_h
|
|
#define mozilla_dom_FileSystemBase_h
|
|
|
|
#include "nsAutoPtr.h"
|
|
#include "nsString.h"
|
|
|
|
class nsPIDOMWindow;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class Directory;
|
|
class DOMFileImpl;
|
|
|
|
class FileSystemBase
|
|
{
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(FileSystemBase)
|
|
public:
|
|
|
|
// Create file system object from its string representation.
|
|
static already_AddRefed<FileSystemBase>
|
|
FromString(const nsAString& aString);
|
|
|
|
FileSystemBase();
|
|
|
|
virtual void
|
|
Shutdown();
|
|
|
|
// Get the string representation of the file system.
|
|
const nsString&
|
|
ToString() const
|
|
{
|
|
return mString;
|
|
}
|
|
|
|
virtual nsPIDOMWindow*
|
|
GetWindow() const;
|
|
|
|
/*
|
|
* Create nsIFile object with the given real path (absolute DOM path).
|
|
*/
|
|
virtual already_AddRefed<nsIFile>
|
|
GetLocalFile(const nsAString& aRealPath) const = 0;
|
|
|
|
/*
|
|
* Get the virtual name of the root directory. This name will be exposed to
|
|
* the content page.
|
|
*/
|
|
virtual const nsAString&
|
|
GetRootName() const = 0;
|
|
|
|
bool
|
|
IsShutdown() const
|
|
{
|
|
return mShutdown;
|
|
}
|
|
|
|
virtual bool
|
|
IsSafeFile(nsIFile* aFile) const;
|
|
|
|
virtual bool
|
|
IsSafeDirectory(Directory* aDir) const;
|
|
|
|
/*
|
|
* Get the real path (absolute DOM path) of the DOM file in the file system.
|
|
* If succeeded, returns true. Otherwise, returns false and set aRealPath to
|
|
* empty string.
|
|
*/
|
|
virtual bool
|
|
GetRealPath(DOMFileImpl* aFile, nsAString& aRealPath) const = 0;
|
|
|
|
/*
|
|
* Get the permission name required to access this file system.
|
|
*/
|
|
const nsCString&
|
|
GetPermission() const
|
|
{
|
|
return mPermission;
|
|
}
|
|
|
|
bool
|
|
IsTesting() const
|
|
{
|
|
return mIsTesting;
|
|
}
|
|
protected:
|
|
virtual ~FileSystemBase();
|
|
|
|
// The string representation of the file system.
|
|
nsString mString;
|
|
|
|
bool mShutdown;
|
|
|
|
// The permission name required to access the file system.
|
|
nsCString mPermission;
|
|
|
|
bool mIsTesting;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_FileSystemBase_h
|