| Index: third_party/WebKit/Source/core/loader/LinkLoader.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/LinkLoader.cpp b/third_party/WebKit/Source/core/loader/LinkLoader.cpp
|
| index 9ac9dc539d17c6fe2c53f07727b9c3665345bc3e..31e9b0680242f970b5d6a0996e35b0166cc3b854 100644
|
| --- a/third_party/WebKit/Source/core/loader/LinkLoader.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/LinkLoader.cpp
|
| @@ -72,10 +72,13 @@ static unsigned prerenderRelTypesFromRelAttribute(
|
| return result;
|
| }
|
|
|
| -LinkLoader::LinkLoader(LinkLoaderClient* client)
|
| +LinkLoader::LinkLoader(LinkLoaderClient* client,
|
| + RefPtr<WebTaskRunner> taskRunner)
|
| : m_client(client),
|
| - m_linkLoadTimer(this, &LinkLoader::linkLoadTimerFired),
|
| - m_linkLoadingErrorTimer(this, &LinkLoader::linkLoadingErrorTimerFired) {
|
| + m_linkLoadTimer(taskRunner, this, &LinkLoader::linkLoadTimerFired),
|
| + m_linkLoadingErrorTimer(taskRunner,
|
| + this,
|
| + &LinkLoader::linkLoadingErrorTimerFired) {
|
| DCHECK(m_client);
|
| }
|
|
|
|
|