| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "modules/filesystem/FileWriter.h" | 32 #include "modules/filesystem/FileWriter.h" |
| 33 | 33 |
| 34 #include "bindings/v8/ExceptionState.h" | 34 #include "bindings/v8/ExceptionState.h" |
| 35 #include "core/dom/ExceptionCode.h" | 35 #include "core/dom/ExceptionCode.h" |
| 36 #include "core/events/ProgressEvent.h" | 36 #include "core/events/ProgressEvent.h" |
| 37 #include "core/fileapi/Blob.h" | 37 #include "core/fileapi/Blob.h" |
| 38 #include "core/fileapi/FileError.h" | |
| 39 #include "public/platform/WebFileWriter.h" | 38 #include "public/platform/WebFileWriter.h" |
| 40 #include "public/platform/WebURL.h" | 39 #include "public/platform/WebURL.h" |
| 41 #include "wtf/CurrentTime.h" | 40 #include "wtf/CurrentTime.h" |
| 42 | 41 |
| 43 namespace WebCore { | 42 namespace WebCore { |
| 44 | 43 |
| 45 static const int kMaxRecursionDepth = 3; | 44 static const int kMaxRecursionDepth = 3; |
| 46 static const double progressNotificationIntervalMS = 50; | 45 static const double progressNotificationIntervalMS = 50; |
| 47 | 46 |
| 48 PassRefPtr<FileWriter> FileWriter::create(ExecutionContext* context) | 47 PassRefPtr<FileWriter> FileWriter::create(ExecutionContext* context) |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 } | 313 } |
| 315 | 314 |
| 316 void FileWriter::setError(FileError::ErrorCode errorCode, ExceptionState& es) | 315 void FileWriter::setError(FileError::ErrorCode errorCode, ExceptionState& es) |
| 317 { | 316 { |
| 318 ASSERT(errorCode); | 317 ASSERT(errorCode); |
| 319 FileError::throwDOMException(es, errorCode); | 318 FileError::throwDOMException(es, errorCode); |
| 320 m_error = FileError::create(errorCode); | 319 m_error = FileError::create(errorCode); |
| 321 } | 320 } |
| 322 | 321 |
| 323 } // namespace WebCore | 322 } // namespace WebCore |
| OLD | NEW |