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

Unified Diff: Source/devtools/front_end/resources/IndexedDBViews.js

Issue 415753002: Deprecate the webkit-prefixed standard IndexedDB entry points (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More rebaselines for console warnings in property enumerating tests 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
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/modules/indexeddb/WindowIndexedDatabase.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/resources/IndexedDBViews.js
diff --git a/Source/devtools/front_end/resources/IndexedDBViews.js b/Source/devtools/front_end/resources/IndexedDBViews.js
index b720e9fb216a154a49a17c50a72a422986196018..e79d2d889c19595536543bacbfa5bdb49a679ffc 100644
--- a/Source/devtools/front_end/resources/IndexedDBViews.js
+++ b/Source/devtools/front_end/resources/IndexedDBViews.js
@@ -330,7 +330,7 @@ WebInspector.IDBDataView.prototype = {
this._pageForwardButton.disabled = !hasMore;
}
- var idbKeyRange = key ? window.webkitIDBKeyRange.lowerBound(key) : null;
+ var idbKeyRange = key ? window.IDBKeyRange.lowerBound(key) : null;
if (this._isIndex)
this._model.loadIndexData(this._databaseId, this._objectStore.name, this._index.name, idbKeyRange, skipCount, pageSize, callback.bind(this));
else
@@ -427,4 +427,3 @@ WebInspector.IDBDataGridNode.prototype = {
__proto__: WebInspector.DataGridNode.prototype
}
-
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/modules/indexeddb/WindowIndexedDatabase.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698