Searched defs:FileError (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileError.cpp32 #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
140 FileError::FileError(ErrorCode code) function in class:blink::FileError
[all...]
H A DFileError.h44 class FileError : public DOMError { class in namespace:blink
75 static PassRefPtrWillBeRawPtr<FileError> create(ErrorCode code)
77 return adoptRefWillBeNoop(new FileError(code));
85 explicit FileError(ErrorCode);
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_errors.h14 enum FileError { enum in namespace:drive
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/
H A DUseCounter.h154 FileError = 126, enumerator in enum:blink::UseCounter::Feature

Completed in 1366 milliseconds