summaryrefslogtreecommitdiffstats
path: root/chrome/browser/file_system/browser_file_system_callback_dispatcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/file_system/browser_file_system_callback_dispatcher.cc')
-rw-r--r--chrome/browser/file_system/browser_file_system_callback_dispatcher.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/file_system/browser_file_system_callback_dispatcher.cc b/chrome/browser/file_system/browser_file_system_callback_dispatcher.cc
index b95930f..810bf3f 100644
--- a/chrome/browser/file_system/browser_file_system_callback_dispatcher.cc
+++ b/chrome/browser/file_system/browser_file_system_callback_dispatcher.cc
@@ -36,8 +36,11 @@ void BrowserFileSystemCallbackDispatcher::DidReadDirectory(
}
void BrowserFileSystemCallbackDispatcher::DidOpenFileSystem(
- const std::string&, const FilePath&) {
- NOTREACHED();
+ const std::string& name, const FilePath& path) {
+ dispatcher_host_->Send(
+ new ViewMsg_OpenFileSystemRequest_Complete(
+ request_id_, !path.empty(), name, path));
+ dispatcher_host_->RemoveCompletedOperation(request_id_);
}
void BrowserFileSystemCallbackDispatcher::DidFail(