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

Unified Diff: chrome/browser/resources/file_manager/js/directory_contents.js

Issue 13945007: filemanager: fix a missing param for the introduced DirectoryContentsDriveSearchMetadata. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another mistake. Created 7 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/js/directory_contents.js
diff --git a/chrome/browser/resources/file_manager/js/directory_contents.js b/chrome/browser/resources/file_manager/js/directory_contents.js
index e7613a00b9af686bf413d7cc4a0ecc106c201fe0..1a37fed8246015bdb81dd5fe577b73c2646fccd6 100644
--- a/chrome/browser/resources/file_manager/js/directory_contents.js
+++ b/chrome/browser/resources/file_manager/js/directory_contents.js
@@ -752,8 +752,8 @@ function DirectoryContentsDriveSearchMetadata(context,
*/
DirectoryContentsDriveSearchMetadata.prototype.clone = function() {
return new DirectoryContentsDriveSearchMetadata(
- this.context_, this.directoryEntry_, this.fakeDirEntry_,
- this.query_);
+ this.context_, this.driveDirEntry_, this.fakeDirEntry_, this.query_,
+ this.searchType_);
};
/**
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698