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

Unified Diff: LayoutTests/storage/indexeddb/resources/shared.js

Issue 415753002: Deprecate the webkit-prefixed standard IndexedDB entry points (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: LayoutTests/storage/indexeddb/resources/shared.js
diff --git a/LayoutTests/storage/indexeddb/resources/shared.js b/LayoutTests/storage/indexeddb/resources/shared.js
index b53e9e39c5746b58da2c653afac44870f4555469..4ac0ccaefdfe3bd0e80491e127f7767d1ac3890d 100644
--- a/LayoutTests/storage/indexeddb/resources/shared.js
+++ b/LayoutTests/storage/indexeddb/resources/shared.js
@@ -26,15 +26,6 @@ if (self.importScripts && !self.postMessage) {
function removeVendorPrefixes()
jsbell 2014/07/23 20:12:51 Since this is used by nearly all of the storage/in
{
- IDBCursor = self.IDBCursor || self.webkitIDBCursor;
- IDBDatabase = self.IDBDatabase || self.webkitIDBDatabase;
- IDBFactory = self.IDBFactory || self.webkitIDBFactory;
- IDBIndex = self.IDBIndex || self.webkitIDBIndex;
- IDBKeyRange = self.IDBKeyRange || self.webkitIDBKeyRange;
- IDBObjectStore = self.IDBObjectStore || self.webkitIDBObjectStore;
- IDBRequest = self.IDBRequest || self.webkitIDBRequest;
- IDBTransaction = self.IDBTransaction || self.webkitIDBTransaction;
-
indexedDB = evalAndLog("indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.msIndexedDB || self.OIndexedDB;");
debug("");
}

Powered by Google App Engine
This is Rietveld 408576698