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

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

Issue 2163213007: Deprecate currentView, useCurrentView properties of SVGSVGElement and SVGViewSpec interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Did deprecation Created 4 years, 5 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 15937cb7748d6f1115fd4c15e5b1cc6cc50c90bd..00e5a75b9f15574f20ca95e55d2efd7fe8cd68fe 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -376,6 +376,12 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature)
case UseCounter::MIDIMessageEventReceivedTime:
return willBeRemoved("MIDIMessageEvent.receivedTime", 56, "5665772797952000");
+ case UseCounter::V8SVGSVGElement_UseCurrentView_AttributeGetter:
+ return willBeRemoved("SVGSVGElement.useCurrentView", 56, "4511711998509056");
+
+ case UseCounter::V8SVGSVGElement_CurrentView_AttributeGetter:
+ return willBeRemoved("SVGSVGElement.currentView", 56, "4511711998509056");
+
// Features that aren't deprecated don't have a deprecation message.
default:
return String();

Powered by Google App Engine
This is Rietveld 408576698