Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1208)

Unified Diff: Source/core/loader/DocumentLoader.h

Issue 100563004: Redirect HTML resource bytes directly to parser thread (Blink side CL) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@parserthread_decodermove
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/loader/DocumentLoader.h
diff --git a/Source/core/loader/DocumentLoader.h b/Source/core/loader/DocumentLoader.h
index 0fbca01e1ffe0b6a012d9c332167da2dbb14279a..b852e38c8e649ad0bd38d15cd418d1319bb7634c 100644
--- a/Source/core/loader/DocumentLoader.h
+++ b/Source/core/loader/DocumentLoader.h
@@ -43,6 +43,10 @@
#include "wtf/HashSet.h"
#include "wtf/RefPtr.h"
+namespace blink {
+class WebThreadedDataReceiver;
+}
+
namespace WTF {
class SchedulePair;
}
@@ -122,6 +126,7 @@ namespace WebCore {
void startLoadingMainResource();
void cancelMainResourceLoad(const ResourceError&);
+ void attachThreadedDataReceiver(blink::WebThreadedDataReceiver*);
abarth-chromium 2014/03/10 21:52:20 PassOwnPtr<blink::WebThreadedDataReceiver>
oystein (OOO til 10th of July) 2014/03/17 21:19:11 Done.
DocumentLoadTiming* timing() { return &m_documentLoadTiming; }
ApplicationCacheHost* applicationCacheHost() const { return m_applicationCacheHost.get(); }

Powered by Google App Engine
This is Rietveld 408576698