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

Side by Side Diff: AudioContext.idl

Issue 7740069: Remove AudioContext createChannelMerger() method until thread safety issues can be properly addre... (Closed) Base URL: https://svn.webkit.org/repository/webkit/branches/chromium/835/Source/WebCore/webaudio/
Patch Set: Created 9 years, 3 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
« no previous file with comments | « AudioContext.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 LowPass2FilterNode createLowPass2Filter(); 68 LowPass2FilterNode createLowPass2Filter();
69 HighPass2FilterNode createHighPass2Filter(); 69 HighPass2FilterNode createHighPass2Filter();
70 AudioPannerNode createPanner(); 70 AudioPannerNode createPanner();
71 ConvolverNode createConvolver(); 71 ConvolverNode createConvolver();
72 DynamicsCompressorNode createDynamicsCompressor(); 72 DynamicsCompressorNode createDynamicsCompressor();
73 RealtimeAnalyserNode createAnalyser(); 73 RealtimeAnalyserNode createAnalyser();
74 JavaScriptAudioNode createJavaScriptNode(in unsigned long bufferSize); 74 JavaScriptAudioNode createJavaScriptNode(in unsigned long bufferSize);
75 75
76 // Channel splitting and merging 76 // Channel splitting and merging
77 AudioChannelSplitter createChannelSplitter(); 77 AudioChannelSplitter createChannelSplitter();
78 AudioChannelMerger createChannelMerger();
79 78
80 // Offline rendering 79 // Offline rendering
81 // void prepareOfflineBufferRendering(in unsigned long numberOfChannels, in unsigned long numberOfFrames, in float sampleRate); 80 // void prepareOfflineBufferRendering(in unsigned long numberOfChannels, in unsigned long numberOfFrames, in float sampleRate);
82 attribute EventListener oncomplete; 81 attribute EventListener oncomplete;
83 void startRendering(); 82 void startRendering();
84 }; 83 };
85 } 84 }
OLDNEW
« no previous file with comments | « AudioContext.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698