summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--content/child/resource_dispatcher.cc81
-rw-r--r--content/child/resource_dispatcher.h11
-rw-r--r--content/child/threaded_data_provider.cc289
-rw-r--r--content/child/threaded_data_provider.h83
-rw-r--r--content/child/web_url_loader_impl.cc15
-rw-r--r--content/child/web_url_loader_impl.h2
-rw-r--r--content/child/webthread_impl.h19
-rw-r--r--content/content_child.gypi2
-rw-r--r--webkit/child/resource_loader_bridge.h9
9 files changed, 485 insertions, 26 deletions
diff --git a/content/child/resource_dispatcher.cc b/content/child/resource_dispatcher.cc
index aa2baae..95697d9 100644
--- a/content/child/resource_dispatcher.cc
+++ b/content/child/resource_dispatcher.cc
@@ -19,6 +19,7 @@
#include "content/child/request_info.h"
#include "content/child/site_isolation_policy.h"
#include "content/child/sync_load_response.h"
+#include "content/child/threaded_data_provider.h"
#include "content/common/inter_process_time_ticks_converter.h"
#include "content/common/resource_messages.h"
#include "content/public/child/request_peer.h"
@@ -80,6 +81,8 @@ class IPCResourceLoaderBridge : public ResourceLoaderBridge {
virtual void SetDefersLoading(bool value) OVERRIDE;
virtual void DidChangePriority(net::RequestPriority new_priority,
int intra_priority_value) OVERRIDE;
+ virtual bool AttachThreadedDataReceiver(
+ blink::WebThreadedDataReceiver* threaded_data_receiver) OVERRIDE;
virtual void SyncLoad(SyncLoadResponse* response) OVERRIDE;
private:
@@ -218,6 +221,17 @@ void IPCResourceLoaderBridge::DidChangePriority(
request_id_, new_priority, intra_priority_value);
}
+bool IPCResourceLoaderBridge::AttachThreadedDataReceiver(
+ blink::WebThreadedDataReceiver* threaded_data_receiver) {
+ if (request_id_ < 0) {
+ NOTREACHED() << "Trying to attach threaded receiver on unstarted request";
+ return false;
+ }
+
+ return dispatcher_->AttachThreadedDataReceiver(request_id_,
+ threaded_data_receiver);
+}
+
void IPCResourceLoaderBridge::SyncLoad(SyncLoadResponse* response) {
if (request_id_ != -1) {
NOTREACHED() << "Starting a request twice";
@@ -403,6 +417,7 @@ void ResourceDispatcher::OnReceivedData(int request_id,
TRACE_EVENT0("loader", "ResourceDispatcher::OnReceivedData");
DCHECK_GT(data_length, 0);
PendingRequestInfo* request_info = GetPendingRequestInfo(request_id);
+ bool send_ack = true;
if (request_info && data_length > 0) {
CHECK(base::SharedMemory::IsHandleValid(request_info->buffer->handle()));
CHECK_GE(request_info->buffer_size, data_offset + data_length);
@@ -414,9 +429,10 @@ void ResourceDispatcher::OnReceivedData(int request_id,
base::TimeTicks time_start = base::TimeTicks::Now();
- const char* data_ptr = static_cast<char*>(request_info->buffer->memory());
- CHECK(data_ptr);
- CHECK(data_ptr + data_offset);
+ const char* data_start = static_cast<char*>(request_info->buffer->memory());
+ CHECK(data_start);
+ CHECK(data_start + data_offset);
+ const char* data_ptr = data_start + data_offset;
// Check whether this response data is compliant with our cross-site
// document blocking policy. We only do this for the first packet.
@@ -424,22 +440,31 @@ void ResourceDispatcher::OnReceivedData(int request_id,
if (request_info->site_isolation_metadata.get()) {
request_info->blocked_response =
SiteIsolationPolicy::ShouldBlockResponse(
- request_info->site_isolation_metadata, data_ptr + data_offset,
- data_length, &alternative_data);
+ request_info->site_isolation_metadata, data_ptr, data_length,
+ &alternative_data);
request_info->site_isolation_metadata.reset();
- }
- // When the response is not blocked.
- if (!request_info->blocked_response) {
- request_info->peer->OnReceivedData(
- data_ptr + data_offset, data_length, encoded_data_length);
- } else if (alternative_data.size() > 0) {
- // When the response is blocked, and when we have any alternative data to
+ // When the response is blocked we may have any alternative data to
// send to the renderer. When |alternative_data| is zero-sized, we do not
// call peer's callback.
- request_info->peer->OnReceivedData(alternative_data.data(),
- alternative_data.size(),
- alternative_data.size());
+ if (request_info->blocked_response && !alternative_data.empty()) {
+ data_ptr = alternative_data.data();
+ data_length = alternative_data.size();
+ encoded_data_length = alternative_data.size();
+ }
+ }
+
+ if (!request_info->blocked_response || !alternative_data.empty()) {
+ if (request_info->threaded_data_provider) {
+ request_info->threaded_data_provider->OnReceivedDataOnForegroundThread(
+ data_ptr, data_length, encoded_data_length);
+ // A threaded data provider will take care of its own ACKing, as the
+ // data may be processed later on another thread.
+ send_ack = false;
+ } else {
+ request_info->peer->OnReceivedData(
+ data_ptr, data_length, encoded_data_length);
+ }
}
UMA_HISTOGRAM_TIMES("ResourceDispatcher.OnReceivedDataTime",
@@ -447,7 +472,8 @@ void ResourceDispatcher::OnReceivedData(int request_id,
}
// Acknowledge the reception of this data.
- message_sender_->Send(new ResourceHostMsg_DataReceived_ACK(request_id));
+ if (send_ack)
+ message_sender_->Send(new ResourceHostMsg_DataReceived_ACK(request_id));
}
void ResourceDispatcher::OnDownloadedData(int request_id,
@@ -620,8 +646,25 @@ void ResourceDispatcher::DidChangePriority(int request_id,
request_id, new_priority, intra_priority_value));
}
+bool ResourceDispatcher::AttachThreadedDataReceiver(
+ int request_id, blink::WebThreadedDataReceiver* threaded_data_receiver) {
+ PendingRequestInfo* request_info = GetPendingRequestInfo(request_id);
+ DCHECK(request_info);
+
+ if (request_info->buffer != NULL) {
+ DCHECK(!request_info->threaded_data_provider);
+ request_info->threaded_data_provider = new ThreadedDataProvider(
+ request_id, threaded_data_receiver, request_info->buffer,
+ request_info->buffer_size);
+ return true;
+ }
+
+ return false;
+}
+
ResourceDispatcher::PendingRequestInfo::PendingRequestInfo()
: peer(NULL),
+ threaded_data_provider(NULL),
resource_type(ResourceType::SUB_RESOURCE),
is_deferred(false),
download_to_file(false),
@@ -637,6 +680,7 @@ ResourceDispatcher::PendingRequestInfo::PendingRequestInfo(
const GURL& request_url,
bool download_to_file)
: peer(peer),
+ threaded_data_provider(NULL),
resource_type(resource_type),
origin_pid(origin_pid),
is_deferred(false),
@@ -647,7 +691,10 @@ ResourceDispatcher::PendingRequestInfo::PendingRequestInfo(
request_start(base::TimeTicks::Now()),
blocked_response(false) {}
-ResourceDispatcher::PendingRequestInfo::~PendingRequestInfo() {}
+ResourceDispatcher::PendingRequestInfo::~PendingRequestInfo() {
+ if (threaded_data_provider)
+ threaded_data_provider->Stop();
+}
void ResourceDispatcher::DispatchMessage(const IPC::Message& message) {
IPC_BEGIN_MESSAGE_MAP(ResourceDispatcher, message)
diff --git a/content/child/resource_dispatcher.h b/content/child/resource_dispatcher.h
index e385e67..b21ec39 100644
--- a/content/child/resource_dispatcher.h
+++ b/content/child/resource_dispatcher.h
@@ -23,6 +23,10 @@
struct ResourceMsg_RequestCompleteData;
+namespace blink {
+class WebThreadedDataReceiver;
+}
+
namespace webkit_glue {
class ResourceLoaderBridge;
}
@@ -30,6 +34,7 @@ class ResourceLoaderBridge;
namespace content {
class RequestPeer;
class ResourceDispatcherDelegate;
+class ThreadedDataProvider;
struct ResourceResponseInfo;
struct RequestInfo;
struct ResourceResponseHead;
@@ -77,6 +82,11 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
net::RequestPriority new_priority,
int intra_priority_value);
+ // The provided data receiver will receive incoming resource data rather
+ // than the resource bridge.
+ bool AttachThreadedDataReceiver(
+ int request_id, blink::WebThreadedDataReceiver* threaded_data_receiver);
+
IPC::Sender* message_sender() const { return message_sender_; }
// This does not take ownership of the delegate. It is expected that the
@@ -107,6 +117,7 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
~PendingRequestInfo();
RequestPeer* peer;
+ ThreadedDataProvider* threaded_data_provider;
ResourceType::Type resource_type;
// The PID of the original process which issued this request. This gets
// non-zero only for a request proxied by another renderer, particularly
diff --git a/content/child/threaded_data_provider.cc b/content/child/threaded_data_provider.cc
new file mode 100644
index 0000000..118b60c
--- /dev/null
+++ b/content/child/threaded_data_provider.cc
@@ -0,0 +1,289 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/child/threaded_data_provider.h"
+
+#include "content/child/child_process.h"
+#include "content/child/child_thread.h"
+#include "content/child/resource_dispatcher.h"
+#include "content/child/thread_safe_sender.h"
+#include "content/child/webthread_impl.h"
+#include "content/common/resource_messages.h"
+#include "ipc/ipc_sync_channel.h"
+#include "third_party/WebKit/public/platform/WebThread.h"
+#include "third_party/WebKit/public/platform/WebThreadedDataReceiver.h"
+
+namespace content {
+
+namespace {
+
+class DataProviderMessageFilter : public IPC::MessageFilter {
+ public:
+ DataProviderMessageFilter(
+ const scoped_refptr<base::MessageLoopProxy>& io_message_loop,
+ base::MessageLoop* main_thread_message_loop,
+ const WebThreadImpl& background_thread,
+ const base::WeakPtr<ThreadedDataProvider>&
+ background_thread_resource_provider,
+ const base::WeakPtr<ThreadedDataProvider>&
+ main_thread_resource_provider,
+ int request_id);
+
+ // IPC::ChannelProxy::MessageFilter
+ virtual void OnFilterAdded(IPC::Sender* sender) OVERRIDE FINAL;
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE FINAL;
+
+ private:
+ virtual ~DataProviderMessageFilter() { }
+
+ void OnReceivedData(int request_id, int data_offset, int data_length,
+ int encoded_data_length);
+
+ const scoped_refptr<base::MessageLoopProxy> io_message_loop_;
+ base::MessageLoop* main_thread_message_loop_;
+ const WebThreadImpl& background_thread_;
+ // This weakptr can only be dereferenced on the background thread.
+ base::WeakPtr<ThreadedDataProvider>
+ background_thread_resource_provider_;
+ // This weakptr can only be dereferenced on the main thread.
+ base::WeakPtr<ThreadedDataProvider>
+ main_thread_resource_provider_;
+ int request_id_;
+};
+
+DataProviderMessageFilter::DataProviderMessageFilter(
+ const scoped_refptr<base::MessageLoopProxy>& io_message_loop,
+ base::MessageLoop* main_thread_message_loop,
+ const WebThreadImpl& background_thread,
+ const base::WeakPtr<ThreadedDataProvider>&
+ background_thread_resource_provider,
+ const base::WeakPtr<ThreadedDataProvider>&
+ main_thread_resource_provider,
+ int request_id)
+ : io_message_loop_(io_message_loop),
+ main_thread_message_loop_(main_thread_message_loop),
+ background_thread_(background_thread),
+ background_thread_resource_provider_(background_thread_resource_provider),
+ main_thread_resource_provider_(main_thread_resource_provider),
+ request_id_(request_id) {
+ DCHECK(main_thread_message_loop != NULL);
+}
+
+void DataProviderMessageFilter::OnFilterAdded(IPC::Sender* sender) {
+ DCHECK(io_message_loop_->BelongsToCurrentThread());
+
+ main_thread_message_loop_->PostTask(FROM_HERE,
+ base::Bind(
+ &ThreadedDataProvider::OnResourceMessageFilterAddedMainThread,
+ main_thread_resource_provider_));
+}
+
+bool DataProviderMessageFilter::OnMessageReceived(
+ const IPC::Message& message) {
+ DCHECK(io_message_loop_->BelongsToCurrentThread());
+
+ if (message.type() != ResourceMsg_DataReceived::ID)
+ return false;
+
+ int request_id;
+
+ PickleIterator iter(message);
+ if (!message.ReadInt(&iter, &request_id)) {
+ NOTREACHED() << "malformed resource message";
+ return true;
+ }
+
+ if (request_id == request_id_) {
+ ResourceMsg_DataReceived::Schema::Param arg;
+ if (ResourceMsg_DataReceived::Read(&message, &arg)) {
+ OnReceivedData(arg.a, arg.b, arg.c, arg.d);
+ return true;
+ }
+ }
+
+ return false;
+}
+
+void DataProviderMessageFilter::OnReceivedData(int request_id,
+ int data_offset,
+ int data_length,
+ int encoded_data_length) {
+ DCHECK(io_message_loop_->BelongsToCurrentThread());
+ background_thread_.message_loop()->PostTask(FROM_HERE, base::Bind(
+ &ThreadedDataProvider::OnReceivedDataOnBackgroundThread,
+ background_thread_resource_provider_,
+ data_offset, data_length, encoded_data_length));
+}
+
+} // anonymous namespace
+
+ThreadedDataProvider::ThreadedDataProvider(
+ int request_id, blink::WebThreadedDataReceiver* threaded_data_receiver,
+ linked_ptr<base::SharedMemory> shm_buffer, int shm_size)
+ : request_id_(request_id),
+ shm_buffer_(shm_buffer),
+ shm_size_(shm_size),
+ main_thread_weak_factory_(this),
+ background_thread_(
+ static_cast<WebThreadImpl&>(
+ *threaded_data_receiver->backgroundThread())),
+ ipc_channel_(ChildThread::current()->channel()),
+ threaded_data_receiver_(threaded_data_receiver),
+ resource_filter_active_(false),
+ main_thread_message_loop_(ChildThread::current()->message_loop()) {
+ DCHECK(ChildThread::current());
+ DCHECK(ipc_channel_);
+ DCHECK(threaded_data_receiver_);
+ DCHECK(main_thread_message_loop_);
+
+ background_thread_weak_factory_.reset(
+ new base::WeakPtrFactory<ThreadedDataProvider>(this));
+
+ filter_ = new DataProviderMessageFilter(
+ ChildProcess::current()->io_message_loop_proxy(),
+ main_thread_message_loop_,
+ background_thread_,
+ background_thread_weak_factory_->GetWeakPtr(),
+ main_thread_weak_factory_.GetWeakPtr(),
+ request_id);
+
+ ChildThread::current()->channel()->AddFilter(filter_);
+}
+
+ThreadedDataProvider::~ThreadedDataProvider() {
+ DCHECK(ChildThread::current());
+
+ ChildThread::current()->channel()->RemoveFilter(filter_);
+
+ delete threaded_data_receiver_;
+}
+
+void DestructOnMainThread(ThreadedDataProvider* data_provider) {
+ DCHECK(ChildThread::current());
+
+ // The ThreadedDataProvider must be destructed on the main thread to
+ // be threadsafe when removing the message filter and releasing the shared
+ // memory buffer.
+ delete data_provider;
+}
+
+void ThreadedDataProvider::Stop() {
+ DCHECK(ChildThread::current());
+
+ // Make sure we don't get called by on the main thread anymore via weak
+ // pointers we've passed to the filter.
+ main_thread_weak_factory_.InvalidateWeakPtrs();
+
+ blink::WebThread* current_background_thread =
+ threaded_data_receiver_->backgroundThread();
+
+ // We can't destroy this instance directly; we need to bounce a message over
+ // to the background thread and back to make sure nothing else will access it
+ // there, before we can destruct it. We also need to make sure the background
+ // thread is still alive, since Blink could have shut down at this point
+ // and freed the thread.
+ if (current_background_thread) {
+ // We should never end up with a different parser thread than from when the
+ // ThreadedDataProvider gets created.
+ DCHECK(current_background_thread ==
+ static_cast<WebThreadImpl*>(&background_thread_));
+ background_thread_.message_loop()->PostTask(FROM_HERE,
+ base::Bind(&ThreadedDataProvider::StopOnBackgroundThread,
+ base::Unretained(this)));
+ }
+}
+
+void ThreadedDataProvider::StopOnBackgroundThread() {
+ DCHECK(background_thread_.isCurrentThread());
+ DCHECK(background_thread_weak_factory_);
+
+ // When this happens, the provider should no longer be called on the
+ // background thread as it's about to be destroyed on the main thread.
+ // Destructing the weak pointer factory means invalidating the weak pointers
+ // which means no callbacks from the filter will happen and nothing else will
+ // use this instance on the background thread.
+ background_thread_weak_factory_.reset(NULL);
+ main_thread_message_loop_->PostTask(FROM_HERE,
+ base::Bind(&DestructOnMainThread, this));
+}
+
+void ThreadedDataProvider::OnResourceMessageFilterAddedMainThread() {
+ DCHECK(ChildThread::current());
+ DCHECK(background_thread_weak_factory_);
+
+ // We bounce this message from the I/O thread via the main thread and then
+ // to our background thread, following the same path as incoming data before
+ // our filter gets added, to make sure there's nothing still incoming.
+ background_thread_.message_loop()->PostTask(FROM_HERE,
+ base::Bind(
+ &ThreadedDataProvider::OnResourceMessageFilterAddedBackgroundThread,
+ background_thread_weak_factory_->GetWeakPtr()));
+}
+
+void ThreadedDataProvider::OnResourceMessageFilterAddedBackgroundThread() {
+ DCHECK(background_thread_.isCurrentThread());
+ resource_filter_active_ = true;
+
+ // At this point we know no more data is going to arrive from the main thread,
+ // so we can process any data we've received directly from the I/O thread
+ // in the meantime.
+ if (!queued_data_.empty()) {
+ std::vector<QueuedSharedMemoryData>::iterator iter = queued_data_.begin();
+ for (; iter != queued_data_.end(); ++iter) {
+ ForwardAndACKData(iter->data, iter->length);
+ }
+
+ queued_data_.clear();
+ }
+}
+
+void ThreadedDataProvider::OnReceivedDataOnBackgroundThread(
+ int data_offset, int data_length, int encoded_data_length) {
+ DCHECK(background_thread_.isCurrentThread());
+ DCHECK(shm_buffer_ != NULL);
+
+ CHECK_GE(shm_size_, data_offset + data_length);
+ const char* data_ptr = static_cast<char*>(shm_buffer_->memory());
+ CHECK(data_ptr);
+ CHECK(data_ptr + data_offset);
+
+ if (resource_filter_active_) {
+ ForwardAndACKData(data_ptr + data_offset, data_length);
+ } else {
+ // There's a brief interval between the point where we know the filter
+ // has been installed on the I/O thread, and when we know for sure there's
+ // no more data coming in from the main thread (from before the filter
+ // got added). If we get any data during that interval, we need to queue
+ // it until we're certain we've processed all the main thread data to make
+ // sure we forward (and ACK) everything in the right order.
+ QueuedSharedMemoryData queued_data;
+ queued_data.data = data_ptr + data_offset;
+ queued_data.length = data_length;
+ queued_data_.push_back(queued_data);
+ }
+}
+
+void ThreadedDataProvider::OnReceivedDataOnForegroundThread(
+ const char* data, int data_length, int encoded_data_length) {
+ DCHECK(ChildThread::current());
+
+ background_thread_.message_loop()->PostTask(FROM_HERE,
+ base::Bind(&ThreadedDataProvider::ForwardAndACKData,
+ base::Unretained(this),
+ data, data_length));
+}
+
+void ThreadedDataProvider::ForwardAndACKData(const char* data,
+ int data_length) {
+ DCHECK(background_thread_.isCurrentThread());
+
+ // TODO(oysteine): SiteIsolationPolicy needs to be be checked
+ // here before we pass the data to the data provider
+ // (or earlier on the I/O thread), otherwise once SiteIsolationPolicy does
+ // actual blocking as opposed to just UMA logging this will bypass it.
+ threaded_data_receiver_->acceptData(data, data_length);
+ ipc_channel_->Send(new ResourceHostMsg_DataReceived_ACK(request_id_));
+}
+
+} // namespace content
diff --git a/content/child/threaded_data_provider.h b/content/child/threaded_data_provider.h
new file mode 100644
index 0000000..223153f
--- /dev/null
+++ b/content/child/threaded_data_provider.h
@@ -0,0 +1,83 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_CHILD_THREADEDDATAPROVIDER_IMPL_H_
+#define CONTENT_CHILD_THREADEDDATAPROVIDER_IMPL_H_
+
+#include "base/compiler_specific.h"
+#include "base/memory/linked_ptr.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/shared_memory.h"
+#include "base/memory/weak_ptr.h"
+#include "ipc/ipc_channel.h"
+#include "ipc/message_filter.h"
+
+namespace blink {
+class WebThreadedDataReceiver;
+}
+
+namespace IPC {
+class SyncChannel;
+}
+
+namespace webkit_glue {
+class WebThreadImpl;
+}
+
+namespace content {
+class ResourceDispatcher;
+class WebThreadImpl;
+
+class ThreadedDataProvider {
+ public:
+ ThreadedDataProvider(
+ int request_id,
+ blink::WebThreadedDataReceiver* threaded_data_receiver,
+ linked_ptr<base::SharedMemory> shm_buffer,
+ int shm_size);
+ virtual ~ThreadedDataProvider();
+
+ void Stop();
+ void OnReceivedDataOnBackgroundThread(int data_offset,
+ int data_length,
+ int encoded_data_length);
+
+ void OnReceivedDataOnForegroundThread(const char* data,
+ int data_length,
+ int encoded_data_length);
+
+ void OnResourceMessageFilterAddedMainThread();
+
+ private:
+ void StopOnBackgroundThread();
+ void OnResourceMessageFilterAddedBackgroundThread();
+ void ForwardAndACKData(const char* data, int data_length);
+
+ scoped_refptr<IPC::MessageFilter> filter_;
+ int request_id_;
+ linked_ptr<base::SharedMemory> shm_buffer_;
+ int shm_size_;
+ scoped_ptr<base::WeakPtrFactory<ThreadedDataProvider> >
+ background_thread_weak_factory_;
+ base::WeakPtrFactory<ThreadedDataProvider>
+ main_thread_weak_factory_;
+ WebThreadImpl& background_thread_;
+ IPC::SyncChannel* ipc_channel_;
+ blink::WebThreadedDataReceiver* threaded_data_receiver_;
+ bool resource_filter_active_;
+ base::MessageLoop* main_thread_message_loop_;
+
+ struct QueuedSharedMemoryData {
+ const char* data;
+ int length;
+ };
+ std::vector<QueuedSharedMemoryData> queued_data_;
+
+ DISALLOW_COPY_AND_ASSIGN(ThreadedDataProvider);
+};
+
+} // namespace content
+
+#endif // CONTENT_CHILD_THREADEDDATAPROVIDER_IMPL_H_
diff --git a/content/child/web_url_loader_impl.cc b/content/child/web_url_loader_impl.cc
index 3a9aee6..138963b 100644
--- a/content/child/web_url_loader_impl.cc
+++ b/content/child/web_url_loader_impl.cc
@@ -218,6 +218,8 @@ class WebURLLoaderImpl::Context : public base::RefCounted<Context>,
void SetDefersLoading(bool value);
void DidChangePriority(WebURLRequest::Priority new_priority,
int intra_priority_value);
+ bool AttachThreadedDataReceiver(
+ blink::WebThreadedDataReceiver* threaded_data_receiver);
void Start(const WebURLRequest& request,
SyncLoadResponse* sync_load_response);
@@ -295,6 +297,14 @@ void WebURLLoaderImpl::Context::DidChangePriority(
ConvertWebKitPriorityToNetPriority(new_priority), intra_priority_value);
}
+bool WebURLLoaderImpl::Context::AttachThreadedDataReceiver(
+ blink::WebThreadedDataReceiver* threaded_data_receiver) {
+ if (bridge_)
+ return bridge_->AttachThreadedDataReceiver(threaded_data_receiver);
+
+ return false;
+}
+
void WebURLLoaderImpl::Context::Start(const WebURLRequest& request,
SyncLoadResponse* sync_load_response) {
DCHECK(!bridge_.get());
@@ -866,4 +876,9 @@ void WebURLLoaderImpl::didChangePriority(WebURLRequest::Priority new_priority,
context_->DidChangePriority(new_priority, intra_priority_value);
}
+bool WebURLLoaderImpl::attachThreadedDataReceiver(
+ blink::WebThreadedDataReceiver* threaded_data_receiver) {
+ return context_->AttachThreadedDataReceiver(threaded_data_receiver);
+}
+
} // namespace content
diff --git a/content/child/web_url_loader_impl.h b/content/child/web_url_loader_impl.h
index a2c1f3c..affe1ab 100644
--- a/content/child/web_url_loader_impl.h
+++ b/content/child/web_url_loader_impl.h
@@ -39,6 +39,8 @@ class WebURLLoaderImpl : public blink::WebURLLoader {
virtual void setDefersLoading(bool value);
virtual void didChangePriority(blink::WebURLRequest::Priority new_priority,
int intra_priority_value);
+ virtual bool attachThreadedDataReceiver(
+ blink::WebThreadedDataReceiver* threaded_data_receiver);
private:
class Context;
diff --git a/content/child/webthread_impl.h b/content/child/webthread_impl.h
index 649cad8..4c81b25 100644
--- a/content/child/webthread_impl.h
+++ b/content/child/webthread_impl.h
@@ -14,7 +14,7 @@
namespace content {
-class WebThreadBase : public blink::WebThread {
+class CONTENT_EXPORT WebThreadBase : public blink::WebThread {
public:
virtual ~WebThreadBase();
@@ -33,10 +33,10 @@ class WebThreadBase : public blink::WebThread {
TaskObserverMap task_observer_map_;
};
-class WebThreadImpl : public WebThreadBase {
+class CONTENT_EXPORT WebThreadImpl : public WebThreadBase {
public:
- CONTENT_EXPORT explicit WebThreadImpl(const char* name);
- CONTENT_EXPORT virtual ~WebThreadImpl();
+ explicit WebThreadImpl(const char* name);
+ virtual ~WebThreadImpl();
virtual void postTask(Task* task);
virtual void postDelayedTask(Task* task, long long delay_ms);
@@ -46,8 +46,9 @@ class WebThreadImpl : public WebThreadBase {
base::MessageLoop* message_loop() const { return thread_->message_loop(); }
- private:
virtual bool isCurrentThread() const OVERRIDE;
+
+ private:
scoped_ptr<base::Thread> thread_;
};
@@ -57,11 +58,11 @@ class WebThreadImplForMessageLoop : public WebThreadBase {
base::MessageLoopProxy* message_loop);
CONTENT_EXPORT virtual ~WebThreadImplForMessageLoop();
- virtual void postTask(Task* task);
- virtual void postDelayedTask(Task* task, long long delay_ms);
+ virtual void postTask(Task* task) OVERRIDE;
+ virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE;
- virtual void enterRunLoop();
- virtual void exitRunLoop();
+ virtual void enterRunLoop() OVERRIDE;
+ virtual void exitRunLoop() OVERRIDE;
private:
virtual bool isCurrentThread() const OVERRIDE;
diff --git a/content/content_child.gypi b/content/content_child.gypi
index a187223..9ef0109 100644
--- a/content/content_child.gypi
+++ b/content/content_child.gypi
@@ -213,6 +213,8 @@
'child/webfileutilities_impl.h',
'child/webmessageportchannel_impl.cc',
'child/webmessageportchannel_impl.h',
+ 'child/threaded_data_provider.cc',
+ 'child/threaded_data_provider.h',
'child/websocket_bridge.cc',
'child/websocket_bridge.h',
'child/websocket_dispatcher.cc',
diff --git a/webkit/child/resource_loader_bridge.h b/webkit/child/resource_loader_bridge.h
index 9b97aa3..1907758 100644
--- a/webkit/child/resource_loader_bridge.h
+++ b/webkit/child/resource_loader_bridge.h
@@ -21,6 +21,10 @@
#include "net/base/request_priority.h"
#include "webkit/child/webkit_child_export.h"
+namespace blink {
+class WebThreadedDataReceiver;
+}
+
// TODO(pilgrim) remove this once resource loader is moved to content
// http://crbug.com/338338
namespace content {
@@ -61,6 +65,11 @@ class ResourceLoaderBridge {
virtual void DidChangePriority(net::RequestPriority new_priority,
int intra_priority_value) = 0;
+ // Call this method to attach a data receiver which will receive resource data
+ // on its own thread.
+ virtual bool AttachThreadedDataReceiver(
+ blink::WebThreadedDataReceiver* threaded_data_receiver) = 0;
+
// Call this method to load the resource synchronously (i.e., in one shot).
// This is an alternative to the Start method. Be warned that this method
// will block the calling thread until the resource is fully downloaded or an