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

Unified Diff: Source/modules/webaudio/AudioBufferSourceNode.cpp

Issue 14146021: Move deprecation messages to UseCounter::measureDeprecatedFeature. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/webaudio/AudioBufferSourceNode.h ('k') | Source/modules/webaudio/AudioBufferSourceNode.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioBufferSourceNode.cpp
diff --git a/Source/modules/webaudio/AudioBufferSourceNode.cpp b/Source/modules/webaudio/AudioBufferSourceNode.cpp
index 6a08b263c26af1e693df916d7a5b1a50b4f5bf96..674230cd311387e8d97ed779a091ff332a97b3ba 100644
--- a/Source/modules/webaudio/AudioBufferSourceNode.cpp
+++ b/Source/modules/webaudio/AudioBufferSourceNode.cpp
@@ -450,20 +450,6 @@ double AudioBufferSourceNode::totalPitchRate()
return totalRate;
}
-bool AudioBufferSourceNode::looping()
-{
- PageConsole::reportDeprecation(context()->scriptExecutionContext(), PageConsole::WebAudioLooping);
-
- return m_isLooping;
-}
-
-void AudioBufferSourceNode::setLooping(bool looping)
-{
- PageConsole::reportDeprecation(context()->scriptExecutionContext(), PageConsole::WebAudioLooping);
-
- m_isLooping = looping;
-}
-
bool AudioBufferSourceNode::propagatesSilence() const
{
return !isPlayingOrScheduled() || hasFinished() || !m_buffer;
« no previous file with comments | « Source/modules/webaudio/AudioBufferSourceNode.h ('k') | Source/modules/webaudio/AudioBufferSourceNode.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698