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

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

Issue 2356223002: Remove WebAudio doppler effect API surface (already no-ops) (Closed)
Patch Set: rebase Created 4 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 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 07965515e7b6a4c34df7cc4efa683fb63f52bdb3..f05db80733e5180feec2d14b46fcc828323fdf97 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -57,11 +57,6 @@ String willBeRemoved(const char* feature, Milestone milestone, const char* detai
return String::format("%s is deprecated and will be removed in %s. See https://www.chromestatus.com/features/%s for more details.", 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 {
@@ -265,18 +260,6 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature)
case UseCounter::GetMatchedCSSRules:
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