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

Unified Diff: chrome/browser/chromeos/extensions/file_manager_util.cc

Issue 10834383: Chrome OS "open with" picker allowing Web Intents (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: some fixes, haven't approached JS yet 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/chromeos/extensions/file_manager_util.cc
diff --git a/chrome/browser/chromeos/extensions/file_manager_util.cc b/chrome/browser/chromeos/extensions/file_manager_util.cc
index f11c947b11b99034937230b350ebf1a15c6a065a..10dce31125ee579dbe2f39914126fc8aa7d27458 100644
--- a/chrome/browser/chromeos/extensions/file_manager_util.cc
+++ b/chrome/browser/chromeos/extensions/file_manager_util.cc
@@ -590,8 +590,8 @@ bool ExecuteDefaultHandler(Profile* profile, const FilePath& path) {
std::vector<GURL> urls;
urls.push_back(url);
- scoped_refptr<FileTaskExecutor> executor = FileTaskExecutor::Create(
- profile, source_url, extension_id, action_id);
+ scoped_refptr<FileTaskExecutor> executor = FileTaskExecutor::Create(profile,
+ source_url, extension_id, file_handler_util::TASK_FILE, action_id);
executor->Execute(urls);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698