Index: third_party/WebKit/public/platform/WebURLLoader.h |
diff --git a/third_party/WebKit/public/platform/WebURLLoader.h b/third_party/WebKit/public/platform/WebURLLoader.h |
index eada222a35754d50362a8ff4febd00194fc96adb..b375b5e4caf002566209e749e7817c06ad94575a 100644 |
--- a/third_party/WebKit/public/platform/WebURLLoader.h |
+++ b/third_party/WebKit/public/platform/WebURLLoader.h |
@@ -37,6 +37,7 @@ |
namespace blink { |
class WebData; |
+class WebTaskRunner; |
class WebThreadedDataReceiver; |
class WebURLLoaderClient; |
class WebURLResponse; |
@@ -78,6 +79,9 @@ public: |
// of the data receiver is assumed by the WebURLLoader and the receiver should |
// be deleted on the main thread when no longer needed. |
virtual bool attachThreadedDataReceiver(WebThreadedDataReceiver*) { return false; } |
+ |
+ // Sets the task runner for which any loading tasks should be posted on. |
+ virtual void setLoadingTaskRunner(WebTaskRunner*) {} |
Sami
2015/09/29 11:22:47
Ditto about pure virtual.
alex clarke (OOO till 29th)
2015/09/29 16:10:36
Done.
|
}; |
} // namespace blink |