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

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

Issue 10946029: [filemanager] Importing progress implemented. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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: chrome/browser/resources/file_manager/js/file_manager_commands.js
===================================================================
--- chrome/browser/resources/file_manager/js/file_manager_commands.js (revision 157524)
+++ chrome/browser/resources/file_manager/js/file_manager_commands.js (working copy)
@@ -121,8 +121,8 @@
var root = CommandUtil.getCommandRoot(event, rootsList);
if (root) {
- chrome.tabs.create({url: chrome.extension.getURL('photo_import.html') +
- '#' + PathUtil.getRootPath(root.fullPath)});
+ chrome.windows.create({url: chrome.extension.getURL('photo_import.html') +
+ '#' + PathUtil.getRootPath(root.fullPath), type: 'popup'});
}
},
canExecute: function(event, rootsList) {

Powered by Google App Engine
This is Rietveld 408576698