Index: chrome/browser/resources/print_preview/search/destination_list.js |
diff --git a/chrome/browser/resources/print_preview/search/destination_list.js b/chrome/browser/resources/print_preview/search/destination_list.js |
index a45f34789692d3f9459738e721b6b351e9170386..7844e4adab8769257ca981a43d67c338d213a4b8 100644 |
--- a/chrome/browser/resources/print_preview/search/destination_list.js |
+++ b/chrome/browser/resources/print_preview/search/destination_list.js |
@@ -128,11 +128,7 @@ cr.define('print_preview', function() { |
numItems = Math.min(numItems, this.destinations_.length); |
var headerHeight = |
this.getChildElement('.destination-list > header').offsetHeight; |
- var throbberHeight = |
- getIsVisible(this.getChildElement('.throbber-container')) ? |
- DestinationList.HEIGHT_OF_ITEM_ : 0; |
- return headerHeight + numItems * DestinationList.HEIGHT_OF_ITEM_ + |
- throbberHeight; |
+ return headerHeight + numItems * DestinationList.HEIGHT_OF_ITEM_; |
}, |
/** @param {boolean} isVisible Whether the throbber is visible. */ |