Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / ui / DataGrid.js
index f264169..d19f184 100644 (file)
@@ -277,7 +277,7 @@ WebInspector.DataGrid.prototype = {
     _startEditingColumnOfDataGridNode: function(node, cellIndex)
     {
         this._editing = true;
-        /** @type {!WebInspector.DataGridNode} */
+        /** @type {?WebInspector.DataGridNode} */
         this._editingNode = node;
         this._editingNode.select();
 
@@ -693,19 +693,6 @@ WebInspector.DataGrid.prototype = {
         return this._scrollContainer;
     },
 
-    /**
-     * @return {boolean}
-     */
-    isScrolledToLastRow: function()
-    {
-        return this._scrollContainer.isScrolledToBottom();
-    },
-
-    scrollToLastRow: function()
-    {
-        this._scrollContainer.scrollTop = this._scrollContainer.scrollHeight - this._scrollContainer.offsetHeight;
-    },
-
     _positionResizers: function()
     {
         var headerTableColumns = this._headerTableColumnGroup.children;
@@ -1478,7 +1465,6 @@ WebInspector.DataGridNode.prototype = {
 
     /**
      * @param {number} myIndex
-     * @protected
      */
     recalculateSiblings: function(myIndex)
     {