Index: chrome/browser/resources/shared/js/cr/ui/table.js |
diff --git a/chrome/browser/resources/shared/js/cr/ui/table.js b/chrome/browser/resources/shared/js/cr/ui/table.js |
index 7129601210747612e7fc6e52f4289c8ff6083405..1086849793883b328433e411fe626efb3e7a3270 100644 |
--- a/chrome/browser/resources/shared/js/cr/ui/table.js |
+++ b/chrome/browser/resources/shared/js/cr/ui/table.js |
@@ -204,6 +204,16 @@ cr.define('cr.ui', function() { |
this.header_.redraw(); |
}, |
+ startBatchUpdates: function() { |
+ this.list_.startBatchUpdates(); |
+ this.header_.startBatchUpdates(); |
+ }, |
+ |
+ endBatchUpdates: function() { |
+ this.list_.endBatchUpdates(); |
+ this.header_.endBatchUpdates(); |
+ }, |
+ |
/** |
* Resize the table columns. |
*/ |