summaryrefslogtreecommitdiffstats
path: root/content/worker/worker_webkitplatformsupport_impl.cc
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-29 05:49:01 +0000
committerkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-29 05:49:01 +0000
commitc2f2d45885e041811adb63f3548b2f759f0bd09d (patch)
tree4dda8bcd74b4193c6437b4071a76cf62efcf5a57 /content/worker/worker_webkitplatformsupport_impl.cc
parent4fedb360195f24b60a65f86122808af39f29bcf1 (diff)
downloadchromium_src-c2f2d45885e041811adb63f3548b2f759f0bd09d.zip
chromium_src-c2f2d45885e041811adb63f3548b2f759f0bd09d.tar.gz
chromium_src-c2f2d45885e041811adb63f3548b2f759f0bd09d.tar.bz2
Implement Worker-MainThread bridge for FileSystem API in Chrome
This basically adds the same worker/mainThread bridge functionality for FileSystem API in Chrome side. Keeping bridge code around is suboptimal, but this allows us to remove bridge code in Blink side which in turn allows us to make further worker-related cleanups in Blink. This change doesn't contain FileWriter related changes yet. (For reference, combined patch is uploaded here: https://codereview.chromium.org/19287010/) BUG=257349 TEST=no behavioral changes yet R=atwilson@chromium.org, jochen@chromium.org, michaeln@chromium.org, tzik@chromium.org Review URL: https://codereview.chromium.org/19387002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214160 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/worker/worker_webkitplatformsupport_impl.cc')
-rw-r--r--content/worker/worker_webkitplatformsupport_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/worker/worker_webkitplatformsupport_impl.cc b/content/worker/worker_webkitplatformsupport_impl.cc
index 9832a42..e7abf76 100644
--- a/content/worker/worker_webkitplatformsupport_impl.cc
+++ b/content/worker/worker_webkitplatformsupport_impl.cc
@@ -96,7 +96,7 @@ WebMimeRegistry* WorkerWebKitPlatformSupportImpl::mimeRegistry() {
WebFileSystem* WorkerWebKitPlatformSupportImpl::fileSystem() {
if (!web_file_system_)
- web_file_system_.reset(new WebFileSystemImpl());
+ web_file_system_.reset(new WebFileSystemImpl(child_thread_loop_.get()));
return web_file_system_.get();
}