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

Side by Side Diff: Source/modules/webaudio/AudioContext.idl

Issue 963983003: Remove [TypeChecking=Unrestricted] use in Source/modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
OLDNEW
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
30 }; 30 };
31 31
32 [ 32 [
33 GarbageCollected, 33 GarbageCollected,
34 ActiveDOMObject, 34 ActiveDOMObject,
35 Conditional=WEB_AUDIO, 35 Conditional=WEB_AUDIO,
36 Constructor, 36 Constructor,
37 ConstructorCallWith=Document, 37 ConstructorCallWith=Document,
38 NoInterfaceObject, 38 NoInterfaceObject,
39 RaisesException=Constructor, 39 RaisesException=Constructor,
40 TypeChecking=Unrestricted,
41 ] interface AudioContext : EventTarget { 40 ] interface AudioContext : EventTarget {
42 // All rendered audio ultimately connects to destination, which represents t he audio hardware. 41 // All rendered audio ultimately connects to destination, which represents t he audio hardware.
43 readonly attribute AudioDestinationNode destination; 42 readonly attribute AudioDestinationNode destination;
44 43
45 // All scheduled times are relative to this time in seconds. 44 // All scheduled times are relative to this time in seconds.
46 readonly attribute double currentTime; 45 readonly attribute double currentTime;
47 46
48 // All AudioNodes in the context run at this sample-rate (sample-frames per second). 47 // All AudioNodes in the context run at this sample-rate (sample-frames per second).
49 readonly attribute float sampleRate; 48 readonly attribute float sampleRate;
50 49
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 86
88 // Close 87 // Close
89 [MeasureAs=AudioContextClose, CallWith=ScriptState, ImplementedAs=closeConte xt] Promise close(); 88 [MeasureAs=AudioContextClose, CallWith=ScriptState, ImplementedAs=closeConte xt] Promise close();
90 89
91 // Pause/resume 90 // Pause/resume
92 [MeasureAs=AudioContextSuspend, CallWith=ScriptState, ImplementedAs=suspendC ontext] Promise suspend(); 91 [MeasureAs=AudioContextSuspend, CallWith=ScriptState, ImplementedAs=suspendC ontext] Promise suspend();
93 [MeasureAs=AudioContextResume, CallWith=ScriptState, ImplementedAs=resumeCon text] Promise resume(); 92 [MeasureAs=AudioContextResume, CallWith=ScriptState, ImplementedAs=resumeCon text] Promise resume();
94 93
95 attribute EventHandler onstatechange; 94 attribute EventHandler onstatechange;
96 }; 95 };
OLDNEW
« no previous file with comments | « Source/modules/webaudio/AudioBufferSourceNode.idl ('k') | Source/modules/webaudio/AudioListener.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698