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

Unified Diff: third_party/WebKit/Source/core/frame/Deprecation.cpp

Issue 2380183002: Remove WebAudio doppler effect API surface (already no-ops) (Closed)
Patch Set: Rebase Created 4 years, 2 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
Index: third_party/WebKit/Source/core/frame/Deprecation.cpp
diff --git a/third_party/WebKit/Source/core/frame/Deprecation.cpp b/third_party/WebKit/Source/core/frame/Deprecation.cpp
index 0bfffb5fac9aa5ed6a14c1e077137c89d42c1a31..c34590896a40f83f3c73522b3f17786ef6fc4ec9 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -57,16 +57,6 @@ String willBeRemoved(const char* feature,
feature, milestoneString(milestone), details);
}
-String dopplerWillBeRemoved(const char* feature,
- Milestone milestone,
- const char* details) {
- return String::format(
- "%s is deprecated and will be removed in %s. It has no effect as the Web "
- "Audio doppler effects have already been removed internally. See "
- "https://www.chromestatus.com/features/%s for more details.",
- feature, milestoneString(milestone), details);
-}
-
} // anonymous namespace
namespace blink {
@@ -295,22 +285,6 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
return "'getMatchedCSSRules()' is deprecated. For more help, check "
"https://code.google.com/p/chromium/issues/detail?id=437569#c2";
- case UseCounter::AudioListenerDopplerFactor:
- return dopplerWillBeRemoved("'AudioListener.dopplerFactor'", M55,
- "5238926818148352");
-
- case UseCounter::AudioListenerSpeedOfSound:
- return dopplerWillBeRemoved("'AudioListener.speedOfSound'", M55,
- "5238926818148352");
-
- case UseCounter::AudioListenerSetVelocity:
- return dopplerWillBeRemoved("'AudioListener.setVelocity()'", M55,
- "5238926818148352");
-
- case UseCounter::PannerNodeSetVelocity:
- return dopplerWillBeRemoved("'PannerNode.setVelocity()'", M55,
- "5238926818148352");
-
case UseCounter::PrefixedWindowURL:
return replacedBy("'webkitURL'", "'URL'");

Powered by Google App Engine
This is Rietveld 408576698