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

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

Issue 2501263002: Indexed DB: Add removal date to webkit-prefixed alias deprecations (Closed)
Patch Set: Remove android_webview expectation change Created 4 years, 1 month 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 | « third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4d3b4c9f8ace5102fcdb2a83f48221b1fd675f96..00c0883cf04a1348d1ce2203ce3f0a83849a0ca6 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -233,31 +233,40 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
"'Document.exitFullscreen()'");
case UseCounter::PrefixedIndexedDB:
- return replacedBy("'webkitIndexedDB'", "'indexedDB'");
+ return replacedWillBeRemoved("'webkitIndexedDB'", "'indexedDB'", M57,
+ "5775330191081472");
case UseCounter::PrefixedIDBCursorConstructor:
- return replacedBy("'webkitIDBCursor'", "'IDBCursor'");
+ return replacedWillBeRemoved("'webkitIDBCursor'", "'IDBCursor'", M57,
+ "5775330191081472");
case UseCounter::PrefixedIDBDatabaseConstructor:
- return replacedBy("'webkitIDBDatabase'", "'IDBDatabase'");
+ return replacedWillBeRemoved("'webkitIDBDatabase'", "'IDBDatabase'", M57,
+ "5775330191081472");
case UseCounter::PrefixedIDBFactoryConstructor:
- return replacedBy("'webkitIDBFactory'", "'IDBFactory'");
+ return replacedWillBeRemoved("'webkitIDBFactory'", "'IDBFactory'", M57,
+ "5775330191081472");
case UseCounter::PrefixedIDBIndexConstructor:
- return replacedBy("'webkitIDBIndex'", "'IDBIndex'");
+ return replacedWillBeRemoved("'webkitIDBIndex'", "'IDBIndex'", M57,
+ "5775330191081472");
case UseCounter::PrefixedIDBKeyRangeConstructor:
- return replacedBy("'webkitIDBKeyRange'", "'IDBKeyRange'");
+ return replacedWillBeRemoved("'webkitIDBKeyRange'", "'IDBKeyRange'", M57,
+ "5775330191081472");
case UseCounter::PrefixedIDBObjectStoreConstructor:
- return replacedBy("'webkitIDBObjectStore'", "'IDBObjectStore'");
+ return replacedWillBeRemoved("'webkitIDBObjectStore'", "'IDBObjectStore'",
+ M57, "5775330191081472");
case UseCounter::PrefixedIDBRequestConstructor:
- return replacedBy("'webkitIDBRequest'", "'IDBRequest'");
+ return replacedWillBeRemoved("'webkitIDBRequest'", "'IDBRequest'", M57,
+ "5775330191081472");
case UseCounter::PrefixedIDBTransactionConstructor:
- return replacedBy("'webkitIDBTransaction'", "'IDBTransaction'");
+ return replacedWillBeRemoved("'webkitIDBTransaction'", "'IDBTransaction'",
+ M57, "5775330191081472");
case UseCounter::PrefixedRequestAnimationFrame:
return "'webkitRequestAnimationFrame' is vendor-specific. Please use the "
« no previous file with comments | « third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698