| Index: Source/core/loader/DocumentLoader.h
|
| diff --git a/Source/core/loader/DocumentLoader.h b/Source/core/loader/DocumentLoader.h
|
| index 29897947ea281d943f07b4dfa1a3c4354bcdba10..e0220b6f489fa9decc703bedec5478939056f439 100644
|
| --- a/Source/core/loader/DocumentLoader.h
|
| +++ b/Source/core/loader/DocumentLoader.h
|
| @@ -46,10 +46,6 @@
|
| #include "wtf/RefPtr.h"
|
|
|
| namespace blink {
|
| -class WebThreadedDataReceiver;
|
| -}
|
| -
|
| -namespace blink {
|
| class ApplicationCacheHost;
|
| class ArchiveResourceCollection;
|
| class ResourceFetcher;
|
| @@ -58,6 +54,7 @@ namespace blink {
|
| class FrameLoader;
|
| class MHTMLArchive;
|
| class ResourceLoader;
|
| + class ThreadedDataReceiver;
|
|
|
| class DocumentLoader : public RefCounted<DocumentLoader>, private RawResourceClient {
|
| WTF_MAKE_FAST_ALLOCATED;
|
| @@ -117,7 +114,7 @@ namespace blink {
|
| void startLoadingMainResource();
|
| void cancelMainResourceLoad(const ResourceError&);
|
|
|
| - void attachThreadedDataReceiver(PassOwnPtr<blink::WebThreadedDataReceiver>);
|
| + void attachThreadedDataReceiver(PassRefPtrWillBeRawPtr<ThreadedDataReceiver>);
|
| void acceptDataFromThreadedReceiver(const char* data, int dataLength, int encodedDataLength);
|
| DocumentLoadTiming* timing() { return &m_documentLoadTiming; }
|
|
|
|
|