Path: blob/trunk/third_party/closure/goog/fs/filesystem.js
2868 views
// Copyright 2011 The Closure Library Authors. All Rights Reserved.1//2// Licensed under the Apache License, Version 2.0 (the "License");3// you may not use this file except in compliance with the License.4// You may obtain a copy of the License at5//6// http://www.apache.org/licenses/LICENSE-2.07//8// Unless required by applicable law or agreed to in writing, software9// distributed under the License is distributed on an "AS-IS" BASIS,10// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.11// See the License for the specific language governing permissions and12// limitations under the License.1314/**15* @fileoverview A wrapper for the HTML5 FileSystem object.16*17*/1819goog.provide('goog.fs.FileSystem');20212223/**24* A local filesystem.25*26* @interface27*/28goog.fs.FileSystem = function() {};293031/**32* @return {string} The name of the filesystem.33*/34goog.fs.FileSystem.prototype.getName = function() {};353637/**38* @return {!goog.fs.DirectoryEntry} The root directory of the filesystem.39*/40goog.fs.FileSystem.prototype.getRoot = function() {};414243