HomeSort by relevance Sort by last modified time
    Searched defs:FileError (Results 1 - 4 of 4) 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 44 class FileError : public DOMError {
74 static PassRefPtrWillBeRawPtr<FileError> create(ErrorCode code)
76 return adoptRefWillBeNoop(new FileError(code));
84 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 base::File::Error that corresponds to the FileError provided.
43 base::File::Error FileErrorToBaseFileError(FileError error);
46 FileError GDataToFileError(google_apis::GDataErrorCode status);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
UseCounter.h 154 FileError = 126,

Completed in 98 milliseconds