/* -*- 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/. */
/* * Return the local root path of the FileSystem implementation. * For OSFileSystem, this is equal to the path of the root Directory; * For DeviceStorageFileSystem, this is the path of the SDCard, parent * directory of the exposed root Directory (per type).
*/ const nsAString& LocalRootPath() const { return mLocalRootPath; }
// CC methods virtualvoid Unlink() {} virtualvoid Traverse(nsCycleCollectionTraversalCallback& cb) {}
void AssertIsOnOwningThread() const;
protected: virtual ~FileSystemBase();
// The local path of the root (i.e. the OS path, with OS path separators, of // the OS directory that acts as the root of this OSFileSystem). // This path must be set by the FileSystem implementation immediately // because it will be used for the validation of any FileSystemTaskChildBase. // The concept of this path is that, any task will never go out of it and this // must be considered the OS 'root' of the current FileSystem. Different // Directory object can have different OS 'root' path. // To be more clear, any path managed by this FileSystem implementation must // be discendant of this local root path.
nsString mLocalRootPath;
bool mShutdown;
};
} // namespace mozilla::dom
#endif// mozilla_dom_FileSystemBase_h
¤ Dauer der Verarbeitung: 0.0 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.