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

Unified Diff: third_party/WebKit/Source/modules/webaudio/WindowWebAudio.idl

Issue 2557523002: Remove webkitAudoContext and webkitOfflineAudioContext (Closed)
Patch Set: Rebase Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/webaudio/WindowWebAudio.idl
diff --git a/third_party/WebKit/Source/modules/webaudio/WindowWebAudio.idl b/third_party/WebKit/Source/modules/webaudio/WindowWebAudio.idl
index 78f08c12aaf97f057fff2cf425c8ce4ff94c5b80..3435ea738fdd7d70d22c10177d6339e4a4ad8069 100644
--- a/third_party/WebKit/Source/modules/webaudio/WindowWebAudio.idl
+++ b/third_party/WebKit/Source/modules/webaudio/WindowWebAudio.idl
@@ -5,10 +5,8 @@
[
ImplementedAs=DOMWindowWebAudio,
] partial interface Window {
- [MeasureAs=AudioContext] attribute AudioContextConstructor AudioContext;
- [MeasureAs=OfflineAudioContext] attribute OfflineAudioContextConstructor OfflineAudioContext;
- [DeprecateAs=PrefixedAudioContext] attribute AudioContextConstructor webkitAudioContext;
- [DeprecateAs=PrefixedOfflineAudioContext] attribute OfflineAudioContextConstructor webkitOfflineAudioContext;
+ attribute AudioContextConstructor AudioContext;
foolip 2016/12/13 20:44:48 With NoInterfaceObject gone, this will also not be
+ attribute OfflineAudioContextConstructor OfflineAudioContext;
// The individual constructible AudioNodes.
[MeasureAs=WebAudioAnalyserNode] attribute AnalyserNodeConstructor AnalyserNode;

Powered by Google App Engine
This is Rietveld 408576698