Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: third_party/WebCore/Modules/mediasource/SourceBuffer.idl

Issue 10831389: Roll IDL to mutlivm@775. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 21 matching lines...) Expand all
32 32
33 interface [ 33 interface [
34 Conditional=MEDIA_SOURCE, 34 Conditional=MEDIA_SOURCE,
35 V8EnabledAtRuntime=mediaSource 35 V8EnabledAtRuntime=mediaSource
36 ] SourceBuffer { 36 ] SourceBuffer {
37 37
38 // Returns the time ranges buffered. 38 // Returns the time ranges buffered.
39 readonly attribute TimeRanges buffered 39 readonly attribute TimeRanges buffered
40 getter raises(DOMException); 40 getter raises(DOMException);
41 41
42 // Applies an offset to media segment timestamps.
43 attribute double timestampOffset
44 setter raises(DOMException);
45
42 // Append segment data. 46 // Append segment data.
43 void append(in Uint8Array data) raises (DOMException); 47 void append(in Uint8Array data) raises (DOMException);
44 48
45 // Abort the current segment append sequence. 49 // Abort the current segment append sequence.
46 void abort() raises (DOMException); 50 void abort() raises (DOMException);
47 }; 51 };
48 52
49 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698