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

  /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/third_party/WebKit/Source/core/fileapi/
FileError.h 42 class FileError : public RefCounted<FileError>, public ScriptWrappable {
72 static PassRefPtr<FileError> create(ErrorCode code) { return adoptRef(new FileError(code)); }
79 FileError(ErrorCode code)
  /external/chromium_org/chrome/browser/resources/file_manager/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...]

Completed in 71 milliseconds