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

Unified Diff: ui/file_manager/gallery/js/gallery.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/compiled_resources.gyp ('k') | ui/file_manager/gallery/js/gallery_data_model.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/gallery/js/gallery.js
diff --git a/ui/file_manager/gallery/js/gallery.js b/ui/file_manager/gallery/js/gallery.js
index e343389df27770c8ed4d275fdce861700b5179f7..f58c804e56c6e6a53e23401c5096fe944737365c 100644
--- a/ui/file_manager/gallery/js/gallery.js
+++ b/ui/file_manager/gallery/js/gallery.js
@@ -318,7 +318,7 @@ Gallery.prototype.loadInternal_ = function(entries, selectedEntries) {
var locationInfo = this.volumeManager_.getLocationInfo(entries[i]);
if (!locationInfo) // Skip the item, since gone.
return;
- items.push(new Gallery.Item(
+ items.push(new GalleryItem(
entries[i],
locationInfo,
null,
@@ -660,7 +660,7 @@ Gallery.prototype.delete_ = function() {
};
/**
- * @return {!Array<Gallery.Item>} Current selection.
+ * @return {!Array<GalleryItem>} Current selection.
*/
Gallery.prototype.getSelectedItems = function() {
return this.selectionModel_.selectedIndexes.map(
@@ -677,7 +677,7 @@ Gallery.prototype.getSelectedEntries = function() {
};
/**
- * @return {?Gallery.Item} Current single selection.
+ * @return {?GalleryItem} Current single selection.
*/
Gallery.prototype.getSingleSelectedItem = function() {
var items = this.getSelectedItems();
« no previous file with comments | « ui/file_manager/gallery/js/compiled_resources.gyp ('k') | ui/file_manager/gallery/js/gallery_data_model.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698