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

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

Issue 2501743003: Indexed DB: Remove 'webkit'-prefixed global aliases (Closed)
Patch Set: rebased 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
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 366d162cd0394bb64a617eb822317265f2a27f42..fa97d03910cb34cd7b31cd9ac202f892eff8406c 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -232,42 +232,6 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature) {
return replacedBy("'HTMLVideoElement.webkitExitFullScreen()'",
"'Document.exitFullscreen()'");
- case UseCounter::PrefixedIndexedDB:
- return replacedWillBeRemoved("'webkitIndexedDB'", "'indexedDB'", M57,
- "5775330191081472");
-
- case UseCounter::PrefixedIDBCursorConstructor:
- return replacedWillBeRemoved("'webkitIDBCursor'", "'IDBCursor'", M57,
- "5775330191081472");
-
- case UseCounter::PrefixedIDBDatabaseConstructor:
- return replacedWillBeRemoved("'webkitIDBDatabase'", "'IDBDatabase'", M57,
- "5775330191081472");
-
- case UseCounter::PrefixedIDBFactoryConstructor:
- return replacedWillBeRemoved("'webkitIDBFactory'", "'IDBFactory'", M57,
- "5775330191081472");
-
- case UseCounter::PrefixedIDBIndexConstructor:
- return replacedWillBeRemoved("'webkitIDBIndex'", "'IDBIndex'", M57,
- "5775330191081472");
-
- case UseCounter::PrefixedIDBKeyRangeConstructor:
- return replacedWillBeRemoved("'webkitIDBKeyRange'", "'IDBKeyRange'", M57,
- "5775330191081472");
-
- case UseCounter::PrefixedIDBObjectStoreConstructor:
- return replacedWillBeRemoved("'webkitIDBObjectStore'", "'IDBObjectStore'",
- M57, "5775330191081472");
-
- case UseCounter::PrefixedIDBRequestConstructor:
- return replacedWillBeRemoved("'webkitIDBRequest'", "'IDBRequest'", M57,
- "5775330191081472");
-
- case UseCounter::PrefixedIDBTransactionConstructor:
- return replacedWillBeRemoved("'webkitIDBTransaction'", "'IDBTransaction'",
- M57, "5775330191081472");
-
case UseCounter::PrefixedRequestAnimationFrame:
return "'webkitRequestAnimationFrame' is vendor-specific. Please use the "
"standard 'requestAnimationFrame' instead.";

Powered by Google App Engine
This is Rietveld 408576698