Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(363)

Unified Diff: ui/file_manager/gallery/js/thumbnail_mode.js

Issue 1408533002: Turn on verbose flag for compiling file_manager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use type cast for createElement, fix indent. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/file_manager/gallery/js/slide_mode.js ('k') | ui/file_manager/image_loader/compiled_resources.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/gallery/js/thumbnail_mode.js
diff --git a/ui/file_manager/gallery/js/thumbnail_mode.js b/ui/file_manager/gallery/js/thumbnail_mode.js
index 1c3fb7c22db137d3c5956fa5c69a2322517da5ef..97cf82ed9e2daa5da430c2ad822e20ca3291900c 100644
--- a/ui/file_manager/gallery/js/thumbnail_mode.js
+++ b/ui/file_manager/gallery/js/thumbnail_mode.js
@@ -672,7 +672,7 @@ ThumbnailView.prototype.selectByThumbnail_ = function(
/**
* Inserts an item.
- * @param {!Gallery.Item} galleryItem A gallery item.
+ * @param {!GalleryItem} galleryItem A gallery item.
* @param {!ThumbnailView.Thumbnail} insertBefore A thumbnail before which new
* thumbnail is inserted. Set null for adding at the end of the list.
* @private
@@ -696,7 +696,7 @@ ThumbnailView.prototype.insert_ = function(galleryItem, insertBefore) {
/**
* Removes an item.
- * @param {!Gallery.Item} galleryItem A gallery item.
+ * @param {!GalleryItem} galleryItem A gallery item.
* @private
*/
ThumbnailView.prototype.remove_ = function(galleryItem) {
@@ -791,13 +791,13 @@ ThumbnailView.prototype.focus = function() {
/**
* Thumbnail.
- * @param {!Gallery.Item} galleryItem A gallery item.
+ * @param {!GalleryItem} galleryItem A gallery item.
* @constructor
* @struct
*/
ThumbnailView.Thumbnail = function(galleryItem) {
/**
- * @private {!Gallery.Item}
+ * @private {!GalleryItem}
*/
this.galleryItem_ = galleryItem;
@@ -858,7 +858,7 @@ ThumbnailView.Thumbnail = function(galleryItem) {
/**
* Returns a gallery item.
- * @return {!Gallery.Item} A gallery item.
+ * @return {!GalleryItem} A gallery item.
*/
ThumbnailView.Thumbnail.prototype.getGalleryItem = function() {
return this.galleryItem_;
« no previous file with comments | « ui/file_manager/gallery/js/slide_mode.js ('k') | ui/file_manager/image_loader/compiled_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698