| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef File_h | 26 #ifndef File_h |
| 27 #define File_h | 27 #define File_h |
| 28 | 28 |
| 29 #include "bindings/core/v8/ArrayBufferOrArrayBufferViewOrBlobOrUSVString.h" | 29 #include "bindings/core/v8/ArrayBufferOrArrayBufferViewOrBlobOrUSVString.h" |
| 30 #include "core/CoreExport.h" | 30 #include "core/CoreExport.h" |
| 31 #include "core/fileapi/Blob.h" | 31 #include "core/fileapi/Blob.h" |
| 32 #include "platform/heap/Handle.h" | 32 #include "platform/heap/Handle.h" |
| 33 #include "wtf/PassRefPtr.h" | 33 #include "platform/wtf/PassRefPtr.h" |
| 34 #include "wtf/text/WTFString.h" | 34 #include "platform/wtf/text/WTFString.h" |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 class ExceptionState; | 38 class ExceptionState; |
| 39 class ExecutionContext; | 39 class ExecutionContext; |
| 40 class FilePropertyBag; | 40 class FilePropertyBag; |
| 41 class FileMetadata; | 41 class FileMetadata; |
| 42 class KURL; | 42 class KURL; |
| 43 class ScriptState; | 43 class ScriptState; |
| 44 | 44 |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 const double snapshot_modification_time_ms_; | 248 const double snapshot_modification_time_ms_; |
| 249 | 249 |
| 250 String relative_path_; | 250 String relative_path_; |
| 251 }; | 251 }; |
| 252 | 252 |
| 253 DEFINE_TYPE_CASTS(File, Blob, blob, blob->IsFile(), blob.IsFile()); | 253 DEFINE_TYPE_CASTS(File, Blob, blob, blob->IsFile(), blob.IsFile()); |
| 254 | 254 |
| 255 } // namespace blink | 255 } // namespace blink |
| 256 | 256 |
| 257 #endif // File_h | 257 #endif // File_h |
| OLD | NEW |