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

Unified Diff: ui/file_manager/zip_archiver/js/app.js

Issue 2807063002: Replace Libarchive with MiniZip. (Closed)
Patch Set: Delete BUILD.gn Created 3 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
Index: ui/file_manager/zip_archiver/js/app.js
diff --git a/ui/file_manager/zip_archiver/js/app.js b/ui/file_manager/zip_archiver/js/app.js
index 21182a1bc977af12fd7c61cbe803d760c049327d..f27cf13ba13695499c3aad5e08347b641d73df3e 100644
--- a/ui/file_manager/zip_archiver/js/app.js
+++ b/ui/file_manager/zip_archiver/js/app.js
@@ -30,9 +30,10 @@ unpacker.app = {
/**
* The default filename for .nmf file.
* This value must not be const because it is overwritten in tests.
+ * Since .nmf file is not available in .grd, we use .txt instead.
mtomasz 2017/04/10 07:15:10 This sounds like a workaround. Is there a bug file
takise 2017/04/11 06:00:52 This is the way ImageLoader loads .pexe file. I re
mtomasz 2017/04/11 06:36:45 Got it. If we already do that, then let's keep it
* @type {string}
*/
- DEFAULT_MODULE_NMF: 'module.nmf',
+ DEFAULT_MODULE_NMF: 'module.nmf.txt',
/**
* The default MIME type for .nmf file.

Powered by Google App Engine
This is Rietveld 408576698