| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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/mediasource/SourceBuffer.h" | 32 #include "modules/mediasource/SourceBuffer.h" |
| 33 | 33 |
| 34 #include "bindings/v8/ExceptionMessages.h" | 34 #include "bindings/v8/ExceptionMessages.h" |
| 35 #include "bindings/v8/ExceptionState.h" | 35 #include "bindings/v8/ExceptionState.h" |
| 36 #include "core/dom/ExceptionCode.h" | 36 #include "core/dom/ExceptionCode.h" |
| 37 #include "core/dom/ExecutionContext.h" | 37 #include "core/dom/ExecutionContext.h" |
| 38 #include "core/events/Event.h" | |
| 39 #include "core/events/GenericEventQueue.h" | 38 #include "core/events/GenericEventQueue.h" |
| 40 #include "core/fileapi/FileReaderLoader.h" | 39 #include "core/fileapi/FileReaderLoader.h" |
| 41 #include "core/fileapi/Stream.h" | 40 #include "core/fileapi/Stream.h" |
| 42 #include "core/html/TimeRanges.h" | 41 #include "core/html/TimeRanges.h" |
| 43 #include "modules/mediasource/MediaSource.h" | 42 #include "modules/mediasource/MediaSource.h" |
| 44 #include "platform/Logging.h" | 43 #include "platform/Logging.h" |
| 45 #include "platform/TraceEvent.h" | 44 #include "platform/TraceEvent.h" |
| 46 #include "public/platform/WebSourceBuffer.h" | 45 #include "public/platform/WebSourceBuffer.h" |
| 47 #include "wtf/ArrayBuffer.h" | 46 #include "wtf/ArrayBuffer.h" |
| 48 #include "wtf/ArrayBufferView.h" | 47 #include "wtf/ArrayBufferView.h" |
| (...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 appendStreamDone(false); | 709 appendStreamDone(false); |
| 711 } | 710 } |
| 712 | 711 |
| 713 void SourceBuffer::trace(Visitor* visitor) | 712 void SourceBuffer::trace(Visitor* visitor) |
| 714 { | 713 { |
| 715 visitor->trace(m_source); | 714 visitor->trace(m_source); |
| 716 visitor->trace(m_stream); | 715 visitor->trace(m_stream); |
| 717 } | 716 } |
| 718 | 717 |
| 719 } // namespace WebCore | 718 } // namespace WebCore |
| OLD | NEW |