| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 void appendBufferInternal(const unsigned char*, unsigned, ExceptionState&); | 108 void appendBufferInternal(const unsigned char*, unsigned, ExceptionState&); |
| 109 void appendBufferAsyncPart(); | 109 void appendBufferAsyncPart(); |
| 110 | 110 |
| 111 void removeAsyncPart(); | 111 void removeAsyncPart(); |
| 112 | 112 |
| 113 void appendStreamInternal(PassRefPtrWillBeRawPtr<Stream>, ExceptionState&); | 113 void appendStreamInternal(PassRefPtrWillBeRawPtr<Stream>, ExceptionState&); |
| 114 void appendStreamAsyncPart(); | 114 void appendStreamAsyncPart(); |
| 115 void appendStreamDone(bool success); | 115 void appendStreamDone(bool success); |
| 116 void clearAppendStreamState(); | 116 void clearAppendStreamState(); |
| 117 | 117 |
| 118 bool evictCodedFrames(); |
| 119 |
| 118 // FileReaderLoaderClient interface | 120 // FileReaderLoaderClient interface |
| 119 virtual void didStartLoading() override; | 121 virtual void didStartLoading() override; |
| 120 virtual void didReceiveDataForClient(const char* data, unsigned dataLength)
override; | 122 virtual void didReceiveDataForClient(const char* data, unsigned dataLength)
override; |
| 121 virtual void didFinishLoading() override; | 123 virtual void didFinishLoading() override; |
| 122 virtual void didFail(FileError::ErrorCode) override; | 124 virtual void didFail(FileError::ErrorCode) override; |
| 123 | 125 |
| 124 OwnPtr<WebSourceBuffer> m_webSourceBuffer; | 126 OwnPtr<WebSourceBuffer> m_webSourceBuffer; |
| 125 Member<MediaSource> m_source; | 127 Member<MediaSource> m_source; |
| 126 RawPtrWillBeMember<GenericEventQueue> m_asyncEventQueue; | 128 RawPtrWillBeMember<GenericEventQueue> m_asyncEventQueue; |
| 127 | 129 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 143 bool m_streamMaxSizeValid; | 145 bool m_streamMaxSizeValid; |
| 144 unsigned long long m_streamMaxSize; | 146 unsigned long long m_streamMaxSize; |
| 145 AsyncMethodRunner<SourceBuffer> m_appendStreamAsyncPartRunner; | 147 AsyncMethodRunner<SourceBuffer> m_appendStreamAsyncPartRunner; |
| 146 RefPtrWillBeMember<Stream> m_stream; | 148 RefPtrWillBeMember<Stream> m_stream; |
| 147 OwnPtr<FileReaderLoader> m_loader; | 149 OwnPtr<FileReaderLoader> m_loader; |
| 148 }; | 150 }; |
| 149 | 151 |
| 150 } // namespace blink | 152 } // namespace blink |
| 151 | 153 |
| 152 #endif // SourceBuffer_h | 154 #endif // SourceBuffer_h |
| OLD | NEW |