Index: third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js b/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js |
index a6fd70c1e0cb3f5dd8b0cc0f3f31dfc56efac185..13aadcab772b952fb502a2fc07e14a2083ced613 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js |
+++ b/third_party/WebKit/Source/devtools/front_end/resources/IndexedDBViews.js |
@@ -356,7 +356,7 @@ WebInspector.IDBDataGridNode.prototype = { |
createCell: function(columnIdentifier) |
{ |
var cell = WebInspector.DataGridNode.prototype.createCell.call(this, columnIdentifier); |
- var value = this.data[columnIdentifier]; |
+ var value = /** @type {!WebInspector.RemoteObject} */ (this.data[columnIdentifier]); |
switch (columnIdentifier) { |
case "value": |