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

Unified Diff: chrome/test/data/extensions/api_test/filebrowser_component/main.js

Issue 10834383: Chrome OS "open with" picker allowing Web Intents (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: reorder class, revert net/* 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/test/data/extensions/api_test/filebrowser_component/main.js
diff --git a/chrome/test/data/extensions/api_test/filebrowser_component/main.js b/chrome/test/data/extensions/api_test/filebrowser_component/main.js
index 66505717695040373dc1d6ac2cfeb142e91f45f6..541beda43b7b676b01d7b0d73d297c5bca8986f0 100644
--- a/chrome/test/data/extensions/api_test/filebrowser_component/main.js
+++ b/chrome/test/data/extensions/api_test/filebrowser_component/main.js
@@ -99,7 +99,6 @@ TestRunner.prototype.onFileCreatorInit_ = function() {
this.errorCallback_({message: "Test file extension not set."});
return;
}
- console.log(this.fileExtension);
var self = this;
this.fileCreator_.createFile('.log',
function(file, text) {
@@ -130,7 +129,6 @@ TestRunner.prototype.onGetTasks_ = function(fileUrl, tasks) {
console.log('DONE fetching ' + tasks.length + ' tasks');
- tasks = this.filterTasks_(tasks);
chrome.fileBrowserPrivate.executeTask(tasks[0].taskId, [fileUrl]);
};

Powered by Google App Engine
This is Rietveld 408576698