Chromium Code Reviews| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 63 attribute EventHandler onupdatestart; | 63 attribute EventHandler onupdatestart; |
| 64 attribute EventHandler onupdate; | 64 attribute EventHandler onupdate; |
| 65 attribute EventHandler onupdateend; | 65 attribute EventHandler onupdateend; |
| 66 attribute EventHandler onerror; | 66 attribute EventHandler onerror; |
| 67 attribute EventHandler onabort; | 67 attribute EventHandler onabort; |
| 68 | 68 |
| 69 // Append segment data. | 69 // Append segment data. |
| 70 [RaisesException] void appendBuffer(ArrayBuffer data); | 70 [RaisesException] void appendBuffer(ArrayBuffer data); |
| 71 [RaisesException] void appendBuffer(ArrayBufferView data); | 71 [RaisesException] void appendBuffer(ArrayBufferView data); |
| 72 | 72 |
| 73 [RaisesException, RuntimeEnabled=ExperimentalStream] void appendStream(Strea m stream, optional unsigned long long maxSize); | |
|
wolenetz
2016/11/03 18:02:40
This CL still leaves SourceBuffer.cpp and SourceBu
yhirano
2016/11/07 06:36:52
Done.
| |
| 74 | |
| 75 // Abort the current segment append sequence. | 73 // Abort the current segment append sequence. |
| 76 [RaisesException] void abort(); | 74 [RaisesException] void abort(); |
| 77 [RaisesException] void remove(double start, unrestricted double end); | 75 [RaisesException] void remove(double start, unrestricted double end); |
| 78 | 76 |
| 79 // Gets or sets the TrackDefaultList this SourceBuffer may consult during | 77 // Gets or sets the TrackDefaultList this SourceBuffer may consult during |
| 80 // the initialization segment algorithm. | 78 // the initialization segment algorithm. |
| 81 [RaisesException=Setter, RuntimeEnabled=MediaSourceExperimental] attribute T rackDefaultList trackDefaults; | 79 [RaisesException=Setter, RuntimeEnabled=MediaSourceExperimental] attribute T rackDefaultList trackDefaults; |
| 82 }; | 80 }; |
| OLD | NEW |