| Index: third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp b/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
|
| index c73e440047c214df9a85217a9e92819fac50eac3..e3baf910d492c2287c9c1a5f97b1bcde1a9b0cd1 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLLinkElement.cpp
|
| @@ -294,9 +294,9 @@ void HTMLLinkElement::scheduleEvent() {
|
| TaskRunnerHelper::get(TaskType::DOMManipulation, &document())
|
| ->postTask(
|
| BLINK_FROM_HERE,
|
| - WTF::bind(&HTMLLinkElement::dispatchPendingEvent,
|
| - wrapPersistent(this),
|
| - passed(IncrementLoadEventDelayCount::create(document()))));
|
| + WTF::bind(
|
| + &HTMLLinkElement::dispatchPendingEvent, wrapPersistent(this),
|
| + WTF::passed(IncrementLoadEventDelayCount::create(document()))));
|
| }
|
|
|
| void HTMLLinkElement::startLoadingDynamicSheet() {
|
|
|