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

Unified Diff: third_party/WebKit/Source/core/html/HTMLLinkElement.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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: 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() {
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698