HomeSort by relevance Sort by last modified time
    Searched defs:FileError (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileError.cpp 32 #include "core/fileapi/FileError.h"
39 const char FileError::abortErrorMessage[] = "An ongoing operation was aborted, typically with a call to abort().";
40 const char FileError::encodingErrorMessage[] = "A URI supplied to the API was malformed, or the resulting Data URL has exceeded the URL length limitations for Data URLs.";
41 const char FileError::invalidStateErrorMessage[] = "An operation that depends on state cached in an interface object was made but the state had changed since it was read from disk.";
42 const char FileError::noModificationAllowedErrorMessage[] = "An attempt was made to write to a file or directory which could not be modified due to the state of the underlying filesystem.";
43 const char FileError::notFoundErrorMessage[] = "A requested file or directory could not be found at the time an operation was processed.";
44 const char FileError::notReadableErrorMessage[] = "The requested file could not be read, typically due to permission problems that have occurred after a reference to a file was acquired.";
45 const char FileError::pathExistsErrorMessage[] = "An attempt was made to create a file or directory where an element already exists.";
46 const char FileError::quotaExceededErrorMessage[] = "The operation failed because it would cause the application to exceed its storage quota.";
47 const char FileError::securityErrorMessage[] = "It was determined that certain files are unsafe for access within a Web (…)
    [all...]
FileError.h 43 class FileError : public DOMError {
73 static PassRefPtr<FileError> create(ErrorCode code) { return adoptRef(new FileError(code)); }
80 explicit FileError(ErrorCode);
  /external/chromium_org/chrome/browser/chromeos/drive/
file_errors.h 14 enum FileError {
37 typedef base::Callback<void(FileError error)> FileOperationCallback;
39 // Returns a string representation of FileError.
40 std::string FileErrorToString(FileError error);
42 // Returns a PlatformFileError that corresponds to the FileError provided.
43 base::PlatformFileError FileErrorToPlatformError(FileError error);
46 FileError GDataToFileError(google_apis::GDataErrorCode status);
  /external/chromium_org/chrome/browser/resources/file_manager/common/js/
util.js 44 * Install a sensible toString() on the FileError object.
46 * FileError.prototype.code is a numeric code describing the cause of the
47 * error. The FileError constructor has a named property for each possible
52 FileError.prototype.toString = function() {
53 return '[object FileError: ' + util.getFileErrorMnemonic(this.code) + ']';
62 for (var key in FileError) {
63 if (key.search(/_ERR$/) != -1 && FileError[key] == code)
71 * @param {number} code File error code (from FileError object).
75 for (var key in FileError) {
77 if (match && FileError[key] == code)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
UseCounter.h 188 FileError,

Completed in 283 milliseconds