| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 Constructor, | 30 Constructor, |
| 31 ConstructorCallWith=Document, | 31 ConstructorCallWith=Document, |
| 32 DependentLifetime, | 32 DependentLifetime, |
| 33 RaisesException=Constructor, | 33 RaisesException=Constructor, |
| 34 Measure | 34 Measure |
| 35 ] interface AudioContext : BaseAudioContext { | 35 ] interface AudioContext : BaseAudioContext { |
| 36 [MeasureAs=AudioContextSuspend, CallWith=ScriptState, ImplementedAs=suspendC
ontext] Promise<void> suspend(); | 36 [MeasureAs=AudioContextSuspend, CallWith=ScriptState, ImplementedAs=suspendC
ontext] Promise<void> suspend(); |
| 37 [MeasureAs=AudioContextClose, CallWith=ScriptState, ImplementedAs=closeConte
xt] Promise<void> close(); | 37 [MeasureAs=AudioContextClose, CallWith=ScriptState, ImplementedAs=closeConte
xt] Promise<void> close(); |
| 38 | 38 |
| 39 // Output timestamp | 39 // Output timestamp |
| 40 [CallWith=ScriptState] AudioTimestamp getOutputTimestamp(); | 40 [MeasureAs=AudioContextGetOutputTimestamp, CallWith=ScriptState] AudioTimest
amp getOutputTimestamp(); |
| 41 | 41 |
| 42 // Sources | 42 // Sources |
| 43 // TODO(rtoy): The following methods should be here instead of in BaseAudioC
ontext: | 43 // TODO(rtoy): The following methods should be here instead of in BaseAudioC
ontext: |
| 44 // | 44 // |
| 45 // createMediaElementSource(HTMLMediaElement mediaElement) | 45 // createMediaElementSource(HTMLMediaElement mediaElement) |
| 46 // createMediaStreamSource(MediaStream mediaStream) | 46 // createMediaStreamSource(MediaStream mediaStream) |
| 47 // createMediaStreamDestination() | 47 // createMediaStreamDestination() |
| 48 }; | 48 }; |
| OLD | NEW |