diff options
author | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 19:55:00 +0000 |
---|---|---|
committer | ericu@google.com <ericu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-07 19:55:00 +0000 |
commit | 368ddad78d3f2eac1ea7a92cfb9716ecd0166279 (patch) | |
tree | 12991a1cf9204760a254dfacd954158035e4d52b /chrome/browser/worker_host | |
parent | c1973bdf0c94687f96155af8249358a4b585e381 (diff) | |
download | chromium_src-368ddad78d3f2eac1ea7a92cfb9716ecd0166279.zip chromium_src-368ddad78d3f2eac1ea7a92cfb9716ecd0166279.tar.gz chromium_src-368ddad78d3f2eac1ea7a92cfb9716ecd0166279.tar.bz2 |
Add the actual writing-files part of FileWriter.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3476002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61833 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/worker_host')
-rw-r--r-- | chrome/browser/worker_host/worker_process_host.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/worker_host/worker_process_host.cc b/chrome/browser/worker_host/worker_process_host.cc index 4532e36..12dfe2d 100644 --- a/chrome/browser/worker_host/worker_process_host.cc +++ b/chrome/browser/worker_host/worker_process_host.cc @@ -72,7 +72,8 @@ WorkerProcessHost::WorkerProcessHost( ALLOW_THIS_IN_INITIALIZER_LIST(file_system_dispatcher_host_( new FileSystemDispatcherHost(this, request_context->file_system_host_context(), - request_context->host_content_settings_map()))) { + request_context->host_content_settings_map(), + NULL /* TODO(ericu)*/))) { next_route_id_callback_.reset(NewCallbackWithReturnValue( WorkerService::GetInstance(), &WorkerService::next_worker_route_id)); db_dispatcher_host_ = new DatabaseDispatcherHost( |