summaryrefslogtreecommitdiffstats
path: root/content/worker
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-31 09:37:30 +0000
committerkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-31 09:37:30 +0000
commit14480507aba23c88ae26d6412e230e71bd784579 (patch)
treee0264232a511c8b8c6cde931cdd3ac56da3f9dc4 /content/worker
parent975bd00bf0a20f6c45e16a914d24f2218d896b76 (diff)
downloadchromium_src-14480507aba23c88ae26d6412e230e71bd784579.zip
chromium_src-14480507aba23c88ae26d6412e230e71bd784579.tar.gz
chromium_src-14480507aba23c88ae26d6412e230e71bd784579.tar.bz2
Revert 214599 "Revert 214160 "Implement Worker-MainThread bridge..."
> Revert 214160 "Implement Worker-MainThread bridge for FileSystem..." > > Suspected to have performance regression, let's see if this changes anything > > BUG=265658 > > > 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 > > TBR=kinuko@chromium.org > > Review URL: https://codereview.chromium.org/21334002 TBR=kinuko@chromium.org Review URL: https://codereview.chromium.org/21008006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214654 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/worker')
-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 50328c4..c9042f0 100644
--- a/content/worker/worker_webkitplatformsupport_impl.cc
+++ b/content/worker/worker_webkitplatformsupport_impl.cc
@@ -99,7 +99,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();
}