Index: ui/file_manager/gallery/js/ribbon.js |
diff --git a/ui/file_manager/gallery/js/ribbon.js b/ui/file_manager/gallery/js/ribbon.js |
index 57857b3ff653303cb522eecbd898864da9b761dd..b55c31729567d61296ba3927b62f78fbe350e9ab 100644 |
--- a/ui/file_manager/gallery/js/ribbon.js |
+++ b/ui/file_manager/gallery/js/ribbon.js |
@@ -414,7 +414,7 @@ Ribbon.prototype.removeVanishing_ = function() { |
* @private |
*/ |
Ribbon.prototype.renderThumbnail_ = function(index) { |
- var item = assertInstanceof(this.dataModel_.item(index), Gallery.Item); |
+ var item = assertInstanceof(this.dataModel_.item(index), GalleryItem); |
var url = item.getEntry().toURL(); |
var cached = this.renderCache_[url]; |
@@ -452,7 +452,7 @@ Ribbon.prototype.renderThumbnail_ = function(index) { |
* Set the thumbnail image. |
* |
* @param {!Element} thumbnail Thumbnail element. |
- * @param {!Gallery.Item} item Gallery item. |
+ * @param {!GalleryItem} item Gallery item. |
* @private |
*/ |
Ribbon.prototype.setThumbnailImage_ = function(thumbnail, item) { |