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

Unified Diff: ui/file_manager/gallery/js/gallery_item_unittest.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
Index: ui/file_manager/gallery/js/gallery_item_unittest.js
diff --git a/ui/file_manager/gallery/js/gallery_item_unittest.js b/ui/file_manager/gallery/js/gallery_item_unittest.js
index 119fea5ad4b4c378bbc3f77467abed5bcc3d370b..8ce4bfff8d9138c56b4c8f5d9081ee3cf12c6798 100644
--- a/ui/file_manager/gallery/js/gallery_item_unittest.js
+++ b/ui/file_manager/gallery/js/gallery_item_unittest.js
@@ -77,7 +77,7 @@ function testSaveToFile(callback) {
entryChanged = true;
};
- var item = new Gallery.Item(
+ var item = new GalleryItem(
entry,
{isReadOnly: false},
{size: 100},
@@ -125,7 +125,7 @@ function testSaveToFileWriteFailCase(callback) {
});
};
- var item = new Gallery.Item(
+ var item = new GalleryItem(
entry,
{isReadOnly: false},
{size: 100},
@@ -178,7 +178,7 @@ function testSaveToFileGetBlobFailCase(callback) {
});
};
- var item = new Gallery.Item(
+ var item = new GalleryItem(
entry,
{isReadOnly: false},
{size: 100},
@@ -229,7 +229,7 @@ function testSaveToFileRaw(callback) {
entryChanged = true;
};
- var item = new Gallery.Item(
+ var item = new GalleryItem(
fileSystem.entries['/test.arw'],
{isReadOnly: false},
{size: 100},
@@ -276,7 +276,7 @@ function testIsWritableFile() {
};
var getGalleryItem = function(path, fileSystem, isReadOnly) {
- return new Gallery.Item(new MockEntry(fileSystem, path),
+ return new GalleryItem(new MockEntry(fileSystem, path),
{isReadOnly: isReadOnly},
{size: 100},
{},
« no previous file with comments | « ui/file_manager/gallery/js/gallery_item_unittest.html ('k') | ui/file_manager/gallery/js/gallery_scripts.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698