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

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 a54d18328c2c5b1628b4d81aa1cb7c0b6072a92f..73fef708fd0557ccc81913c382e8d9083b8538b3 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 WebThreadedResourceProvider;
+}
+
namespace WTF {
class SchedulePair;
}
@@ -123,6 +127,7 @@ namespace WebCore {
void startLoadingMainResource();
void cancelMainResourceLoad(const ResourceError&);
+ PassOwnPtr<blink::WebThreadedResourceProvider> createThreadedResourceProvider();
DocumentLoadTiming* timing() { return &m_documentLoadTiming; }
ApplicationCacheHost* applicationCacheHost() const { return m_applicationCacheHost.get(); }

Powered by Google App Engine
This is Rietveld 408576698